diff options
-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 |