aboutsummaryrefslogtreecommitdiff
path: root/build_debian.sh
blob: 72dcfff996fa24a9a0d9fb9bc64d6fc0d22e22f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# If this script fails on a Debian 4.0 ("etch") system then read
# the debian/README.debian4 file.

echo "chmod +x debian/rules"
chmod +x debian/rules

# in some environments the '-rfakeroot' can cause a failure (e.g. when
# building as root). If so, remove that argument from the following:
echo "dpkg-buildpackage -b -rfakeroot -us -uc"
dpkg-buildpackage -b -rfakeroot -us -uc

# If the above succeeds then the ".deb" binary package is placed in the
# parent directory.