#!/bin/sh # This file is in the public domain. # Helper script to build the latest DEB packages in the container. set -eu unset LD_LIBRARY_PATH mkdir -p /build/anastasis cd /build/anastasis # Fetch source rm -rf * for n in anastasis anastasis-gtk do git clone git://git.taler.net/$n cd $n git checkout $1 ./bootstrap dpkg-buildpackage -rfakeroot -b -uc -us cd .. dpkg -i *.deb done tar uvf ../packages.tgz *.deb cd ..