#!/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 cd /build # Fetch source rm -rf anastasis anastasis-gtk git clone git://git.taler.net/anastasis git clone git://git.taler.net/anastasis-gtk for n in anastasis anastasis-gtk do cd $n ./bootstrap dpkg-buildpackage -rfakeroot -b -uc -us cd .. dpkg -i *.deb done rm -f packages.tgz tar cvf packages.tgz *.deb