summaryrefslogtreecommitdiff
path: root/builddebs
blob: 59f2474e93d0f36ee2cfa3f11a753e069176ca25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/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
echo
if [ "$INSTALL" == "y" ]; then debi *.changes; fi

echo
echo -n "Push packages? (y/N) "
read -n 1 PUSH
echo
if [ "$PUSH" == "y" ]; then dput *.changes; fi

echo
echo -n "Clean repo? (Y/n) "
read -n 1 CLEAN
echo
if [ "$CLEAN" != "n" ]; then git clean; fi