#!/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 rm -rf /build/sync mkdir -p /build/sync cd /build/sync # Fetch source for n in sync 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 ..