The pkgline.toml Manifest
Drop a pkgline.toml in the repo root when Pkgline needs explicit build metadata.
Example
toml
[package]
name = "my-tool"
version = "1.0.0"
language = "go"
executable = "my-tool"
[scripts]
install = "install.sh"
uninstall = "uninstall.sh"[package]
name— package name (required)version— package version stringlanguage—go,rust,cbld,c,cpp,make, orcmake. If omitted and there is no install script, Pkgline inferscmakefromCMakeLists.txtormakefromMakefile.executable— binary name (defaults toname)
[scripts]
Optional hooks when native builds are not used or for cleanup:
install— script path (e.g.install.sh)uninstall— script path run onpkgline remove