--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/package.sh Mon Dec 05 23:50:22 2022 +0200 @@ -0,0 +1,16 @@ +#!/bin/sh +t=$(mktemp -d) +v=$(cat Cargo.toml |sed 's/^version = \"\(.*\)\"/\1/p; d;') +n="pointsource_algs-$v" +f="$n.zip" +if test -f "$f"; then + echo "$n already exists" + exit 1 +fi +echo "Assembling $f..." +hg archive "$t/$n" +rm "$t/$n/package.sh" +hg -R ../alg_tools archive "$t/$n/alg_tools" +p="$(pwd)" +cd $t +zip -q -r "$p/$f" "$n"