summaryrefslogtreecommitdiff
path: root/builddebs
diff options
context:
space:
mode:
Diffstat (limited to 'builddebs')
-rwxr-xr-xbuilddebs23
1 files changed, 23 insertions, 0 deletions
diff --git a/builddebs b/builddebs
new file mode 100755
index 0000000..272fa32
--- /dev/null
+++ b/builddebs
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+set -e
+set -o pipefail
+
+for SOURCE in libpiny pinyadmin; do cd "$SOURCE"; debuild -tc; done
+
+equivs-build -f piny.equiv
+
+echo
+echo -n "Install packages? (y/N) "
+read -n 1 INSTALL
+if [ "$INSTALL" == "y" ]; then debi *.changes; fi
+
+echo
+echo -n "Push packages? (y/N) "
+read -n 1 PUSH
+if [ "$PUSH" == "y" ]; then dput *.changes; fi
+
+echo
+echo -n "Clean repo? (Y/n) "
+read -n 1 CLEAN
+if [ "$CLEAN" != "n" ]; then git clean; fi