48 lines
1.4 KiB
Bash
Executable file
48 lines
1.4 KiB
Bash
Executable file
#!/bin/sh -e
|
|
|
|
basedir=$(realpath "$(dirname "$0")"/../..)
|
|
pdir=$basedir/packaging/FreeBSD
|
|
bdir=$basedir/_build/install/default/bin
|
|
#tmptmpl=$(basename "$0")
|
|
#tmpd=$(mktemp -t "$tmptmpl")
|
|
tmpd=$basedir/_build/stage
|
|
manifest=$tmpd/+MANIFEST
|
|
rootdir=$tmpd/rootdir
|
|
sbindir=$rootdir/usr/local/sbin
|
|
rcdir=$rootdir/usr/local/etc/rc.d
|
|
libexecdir=$rootdir/usr/local/libexec
|
|
|
|
trap 'rm -rf $tmpd' 0 INT EXIT
|
|
|
|
mkdir -p "$rootdir"/usr/local/sbin \
|
|
"$rootdir"/usr/local/libexec \
|
|
"$rootdir"/usr/local/etc/rc.d
|
|
|
|
# stage service scripts
|
|
install -U $pdir/rc.d/builder_web $rcdir/builder_web
|
|
|
|
# stage app binaries
|
|
install -U $bdir/builder-web $libexecdir/builder-web
|
|
|
|
install -U $bdir/builder-migrations $sbindir/builder-migrations
|
|
install -U $bdir/builder-db $sbindir/builder-db
|
|
|
|
# create +MANIFEST
|
|
flatsize=$(find "$rootdir" -type f -exec stat -f %z {} + |
|
|
awk 'BEGIN {s=0} {s+=$1} END {print s}')
|
|
|
|
sed -e "s:%%FLATSIZE%%:${flatsize}:" "$pdir/MANIFEST" > "$manifest"
|
|
|
|
{
|
|
printf '\nfiles {\n'
|
|
find "$rootdir" -type f -exec sha256 -r {} + | sort |
|
|
awk '{print " " $2 ": \"" $1 "\"," }'
|
|
find "$rootdir" -type l | sort |
|
|
awk "{print \" \"\$1 \": -,\"}"
|
|
printf '}\n'
|
|
} | sed -e "s:${rootdir}::" >> "$manifest"
|
|
|
|
export SOURCE_DATE_EPOCH=$(git log -1 --pretty=format:%ct)
|
|
pkg create -r "$rootdir" -M "$manifest" -o $basedir/
|
|
mv $basedir/builder_web-*.txz $basedir/builder_web.txz
|
|
rm $basedir/builder-web.install
|