56 lines
1.6 KiB
Bash
Executable file
56 lines
1.6 KiB
Bash
Executable file
#!/bin/sh -e
|
|
|
|
basedir=$(realpath "$(dirname "$0")"/..)
|
|
#tmptmpl=$(basename "$0")
|
|
#tmpd=$(mktemp -t "$tmptmpl")
|
|
tmpd=$basedir/_build/stage
|
|
manifest=$tmpd/+MANIFEST
|
|
rootdir=$tmpd/rootdir
|
|
|
|
|
|
trap 'rm -rf $tmpd' 0 INT EXIT
|
|
|
|
mkdir -p "$rootdir"/usr/local/sbin \
|
|
"$rootdir"/usr/local/libexec/albatross \
|
|
"$rootdir"/usr/local/etc/rc.d
|
|
|
|
# stage service scripts
|
|
for f in albatross_log \
|
|
albatross_stat \
|
|
albatross_console \
|
|
albatross_daemon \
|
|
albatross_influx \
|
|
albatross_tls \
|
|
albatross_x
|
|
do install -U $basedir/packaging/rc.d/$f $rootdir/usr/local/etc/rc.d/$f; done
|
|
|
|
# stage albatross app binaries
|
|
for f in vmmd vmmd_log vmmd_console vmmd_stats vmmd_influx vmmd_tls vmmd_tls_inetd; do
|
|
install -U $basedir/_build/app/$f.native \
|
|
$rootdir/usr/local/libexec/albatross/$f; done
|
|
|
|
for f in vmmc_local vmmc_remote vmmc_bistro vmmp_ca vmmp_request; do
|
|
install -U $basedir/_build/app/$f.native \
|
|
$rootdir/usr/local/sbin/$f; done
|
|
|
|
# create +MANIFEST
|
|
flatsize=$(find "$rootdir" -type f -exec stat -f %z {} + |
|
|
awk 'BEGIN {s=0} {s+=$1} END {print s}')
|
|
|
|
gitver=$(git rev-parse --short HEAD)
|
|
|
|
sed -e "s:%%GITVER%%:${gitver}:" -e "s:%%FLATSIZE%%:${flatsize}:" \
|
|
"$basedir/packaging/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/_build/
|