bob 0.9.0

A pkgsrc package builder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
#
# This script is executed immediately prior to package build and should perform
# any sandbox setup work necessary for each build.
#
# Note that it is also executed once in each sandbox prior to the scan phase
# beginning, so that the bootstrap kit contents are available.
#

# If a bootstrap kit has been defined (required on any OS other than NetBSD)
# then unpack it.
if [ -n "${bob_bootstrap}" ]; then
	${bob_tar} -zxpf "${bob_bootstrap}" -C /
fi