taler-deployment

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

wallet-build.sh (474B)


      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 
      8 mkdir -p /build/wallet
      9 cd /build/wallet
     10 
     11 # Fetch source
     12 rm -rf *
     13 git clone git://git.taler.net/wallet-core
     14 
     15 cd wallet-core
     16 git checkout $1
     17 ./bootstrap
     18 
     19 cd packages/taler-wallet-cli
     20 
     21 dpkg-buildpackage -rfakeroot -b -uc -us
     22 
     23 cd ../taler-harness
     24 dpkg-buildpackage -rfakeroot -b -uc -us
     25 
     26 cd ../
     27 
     28 tar uvf ../../../packages.tgz *.deb