summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Blake Kongslie <jblake@omgwallhack.org>2010-12-27 13:54:28 -0800
committerJulian Blake Kongslie <jblake@omgwallhack.org>2010-12-27 13:54:28 -0800
commit60a0bf11d3738c2a987fac8c349c8486c7edc968 (patch)
tree45e86ab7e9fce86406ee15a065b24513fbc1206e
parent88b8f280e996c5b0d04d306dd0f0e09806a6547e (diff)
downloadpiny-code-60a0bf11d3738c2a987fac8c349c8486c7edc968.tar.gz
piny-code-60a0bf11d3738c2a987fac8c349c8486c7edc968.zip
Lintian.
-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