build-ubuntu.sh (442B)
1 #!/bin/sh 2 # Install essential build dependencies 3 sudo apt install build-essential devscripts debhelper equivs 4 5 # Clone our repos 6 git clone https://git.gnunet.org/gnunet.git 7 git clone https://git.taler.net/exchange.git 8 git clone https://git.taler.net/merchant.git 9 10 # 11 ## Build GNUnet 12 # 13 14 # Install build dependencies 15 cd ~/gnunet && sudo mk-build-deps --install debian/control 16 17 cd ~/gnunet && ./bootstrap 18 cd ~/gnunet && debuild --no-sign -i -B 19 20