#!/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/taler cd /build/taler # Fetch source rm -rf * # pip3 install --break-system-packages htmlark git clone git://git.taler.net/merchant cd merchant git checkout $1 ./bootstrap dpkg-buildpackage -rfakeroot -b -uc -us cd .. dpkg -i *.deb tar uvf ../packages.tgz *.deb cd ..