- The Core Planners: [email protected]
Binary package
Binary packages can be set as runtime or build time dependencies. See Defining your dependencies for more information.
To add core/gzip as a depdendency, you can add one of the following to your plan file.
pkg_build_deps=(core/gzip)
pkg_deps=(core/gzip)
To install this plan, you should run the following commands to first install, and then link the binaries this plan creates.
hab pkg install core/gzip
» Installing core/gzip
☁ Determining latest version of core/gzip in the 'stable' channel
☛ Verifying core/gzip/1.10/20200306002325
...
✓ Installed core/gzip/1.10/20200306002325
★ Install of core/gzip/1.10/20200306002325 complete with 1 new packages installed.
hab pkg binlink core/gzip
» Binlinking gzip from core/gzip into /bin
★ Binlinked gzip from core/gzip/1.10/20200306002325 to /bin/gzip
...
You can now use the binary as normal:
/bin/gzip --help
or gzip --help
Usage: gzip [OPTION]... [FILE]...
Compress or uncompress FILEs (by default, compress FILES in-place).
Mandatory arguments to long options are mandatory for short options too.
-c, --stdout write on standard output, keep original files unchanged
-d, --decompress decompress
-f, --force force overwrite of output file and compress links
-h, --help give this help
...