Codebase list ldap-git-backup / debian/latest build-all
debian/latest

Tree @debian/latest (Download .tar.gz)

build-all @debian/latestraw · history · blame

#!/bin/sh
# vim: filetype=sh :

set -e

test -f ./configure.ac || (echo 'not in source directory' ; exit 1)
autoreconf --force --install
./configure
make
make check
make distcheck
mv *.tar.gz ../"$(echo *.tar.gz | sed -e 's/backup-/backup_/' -e 's/\.tar/.orig.tar/')"

make distclean
debuild "$@"
debclean