summaryrefslogtreecommitdiff
path: root/builddebs
diff options
context:
space:
mode:
Diffstat (limited to 'builddebs')
-rwxr-xr-xbuilddebs8
1 files changed, 8 insertions, 0 deletions
diff --git a/builddebs b/builddebs
index c75c43d..f82ca4e 100755
--- a/builddebs
+++ b/builddebs
@@ -20,6 +20,14 @@ if [ "$SIGN" == "y" ]; then SIGNARGS=""; else SIGNARGS="-uc -us"; fi
for SOURCE in libpiny piny pinyweb pinyadmin pinyconfigs; do (cd "$SOURCE"; debuild $SIGNARGS -tc "$@"); done
+if which lintian > /dev/null 2> /dev/null; then
+ echo
+ echo -n "Run lintian on packages? (Y/n) "
+ read -n 1 LINTIAN
+ echo
+ if [ "$LINTIAN" != "n" ]; then for CHANGES in *.changes; do echo "$CHANGES"; lintian "$CHANGES"; done; fi
+fi
+
echo
echo -n "Install packages on this machine? (y/N) "
read -n 1 INSTALL