diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-12-27 13:54:28 -0800 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-12-27 13:54:28 -0800 |
commit | 60a0bf11d3738c2a987fac8c349c8486c7edc968 (patch) | |
tree | 45e86ab7e9fce86406ee15a065b24513fbc1206e | |
parent | 88b8f280e996c5b0d04d306dd0f0e09806a6547e (diff) | |
download | piny-code-60a0bf11d3738c2a987fac8c349c8486c7edc968.tar.gz piny-code-60a0bf11d3738c2a987fac8c349c8486c7edc968.zip |
Lintian.
-rwxr-xr-x | builddebs | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |