File: testcode36.sh

package info (click to toggle)
debmake 5.0.1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 792 kB
  • sloc: python: 2,731; sh: 214; makefile: 30
file content (18 lines) | stat: -rwxr-xr-x 394 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh
# check if debmake works as expected
LC_ALL=en_US.UTF-8
export LC_ALL

# non-native source tree with tar.gz on side
PROJECT=foo-3.6
rm -f ${PROJECT}*.tar.?z
rm -rf ${PROJECT}
mkdir ${PROJECT}
echo "DUMMY ${PROJECT}" > ${PROJECT}/dummy-${PROJECT}
tar -cvzf ${PROJECT}.tar.gz ${PROJECT}
cd ${PROJECT} || exit 1
debmake -x0 2>&1
debmake -x3 -B 2>&1
test -x debian/rules
cd .. || exit 1