File: build-all

package info (click to toggle)
ldap-git-backup 1.0.8-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 452 kB
  • sloc: perl: 753; sh: 501; makefile: 31
file content (16 lines) | stat: -rwxr-xr-x 306 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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