summaryrefslogtreecommitdiff
path: root/packaging/ubuntu-mantic-docker/exchange-build.sh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-04-21 14:28:07 +0200
committerChristian Grothoff <christian@grothoff.org>2024-04-21 14:28:07 +0200
commite55f6cfe2f24d67ea02b91a1b0d8069c6ce6cd9f (patch)
tree4e74bc5eba266b0cf857477bac364487ad13e7a4 /packaging/ubuntu-mantic-docker/exchange-build.sh
parent2e109a29f93b61e338283a14172b1baf8a948864 (diff)
downloaddeployment-e55f6cfe2f24d67ea02b91a1b0d8069c6ce6cd9f.tar.gz
deployment-e55f6cfe2f24d67ea02b91a1b0d8069c6ce6cd9f.tar.bz2
deployment-e55f6cfe2f24d67ea02b91a1b0d8069c6ce6cd9f.zip
rename fest
Diffstat (limited to 'packaging/ubuntu-mantic-docker/exchange-build.sh')
-rw-r--r--packaging/ubuntu-mantic-docker/exchange-build.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/packaging/ubuntu-mantic-docker/exchange-build.sh b/packaging/ubuntu-mantic-docker/exchange-build.sh
deleted file mode 100644
index a94a003..0000000
--- a/packaging/ubuntu-mantic-docker/exchange-build.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/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
-
-export CC=gcc-12
-# Fetch source
-rm -rf *
-
-pip3 install --break-system-packages htmlark
-
-git clone git://git.taler.net/exchange
-cd exchange
-git checkout $1
-./bootstrap
-dpkg-buildpackage -rfakeroot -b -uc -us
-cd ..
-dpkg -i *.deb
-
-tar uvf ../packages.tgz *.deb
-cd ..