blob: 9e9647071bc8ea3889f4edbbc1115fbd13b4aa19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
Building Debian packages
========================
This is work in progress, please expect build instructions to change any time
soon. Currently, to build custom Debian or Ubuntu packages, please proceed as
follows:
```sh
apt-get install --no-install-recommends \
debhelper devscripts build-essential fakeroot libparse-debcontrol-perl
# Eventually adjust debian/changelog
cp -a packaging/debian debian
dpkg-buildpackage -us -uc
rm -rf debian
```
Please move to your parent directory (`cd ..`) to find your new Debian packages.
|