bosh-gen icon indicating copy to clipboard operation
bosh-gen copied to clipboard

Add "package <name> -f path/to/blob-1.2.3.tgz -v 1.2.3"

Open drnic opened this issue 7 years ago • 0 comments

Packages don't need to have explicit versions in files. The above example should produce:

  • packages/name/spec
---
name: softhsm
dependencies: []
files:
- softhsm/SoftHSMv2-*.tar.gz
  • packages/name/packaging
...
tar xfv softhsm/SoftHSMv2-*.tar.gz
cd SoftHSMv2-*
./configure --prefix=${BOSH_INSTALL_TARGET}
make -j${CPUS} && make install
# Alternatively, to copy archive contents:
# cp -a SoftHSMv2-*/* $BOSH_INSTALL_TARGET

drnic avatar Aug 29 '17 23:08 drnic