mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-25 09:09:34 -05:00
18 lines
534 B
Text
18 lines
534 B
Text
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.
|
|
|