File: buildpackage

package info (click to toggle)
dh-puredata 3.2.0
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 156 kB
  • sloc: perl: 189; sh: 51; makefile: 25; ansic: 23
file content (17 lines) | stat: -rwxr-xr-x 203 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -e

runtest() {
  local p=$(pwd)
  cd "$1"
  dpkg-buildpackage  --no-sign --build=binary

  dpkg-buildpackage -Tclean

  cd "${p}"
}

# Build packages
for d in "$@"; do
  runtest "$d"
done