taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

libeufin-build.sh (391B)


      1 #!/bin/sh
      2 # This file is in the public domain.
      3 # Helper script to build the latest DEB packages in the container.
      4 
      5 set -eu
      6 unset LD_LIBRARY_PATH
      7 mkdir -p /build/libeufin
      8 cd /build/libeufin
      9 
     10 # Fetch source
     11 rm -rf *
     12 git clone git://git.taler.net/libeufin
     13 cd libeufin
     14 git checkout $1
     15 ./bootstrap
     16 ./configure --prefix=/usr/local
     17 make deb
     18 cd ..
     19 dpkg -i *.deb
     20 
     21 tar uvf ../packages.tgz *.deb
     22 cd ..