#!/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/libeufin cd /build/libeufin # Fetch source rm -rf * git clone git://git.taler.net/libeufin cd libeufin git checkout $1 ./bootstrap ./configure --prefix=/usr/local make deb cd .. dpkg -i *.deb tar uvf ../packages.tgz *.deb cd ..