Codebase list ldap-git-backup / c5c8c352-849b-4c95-9122-7629d51b9eb3/main build-all
c5c8c352-849b-4c95-9122-7629d51b9eb3/main

Tree @c5c8c352-849b-4c95-9122-7629d51b9eb3/main (Download .tar.gz)

build-all @c5c8c352-849b-4c95-9122-7629d51b9eb3/mainraw · 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