Codebase list ldap-git-backup / run/cb6c70b4-1051-46b1-be4b-8c4a2bd24f48/main build-all
run/cb6c70b4-1051-46b1-be4b-8c4a2bd24f48/main

Tree @run/cb6c70b4-1051-46b1-be4b-8c4a2bd24f48/main (Download .tar.gz)

build-all @run/cb6c70b4-1051-46b1-be4b-8c4a2bd24f48/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