how to build Debian package

This commit is contained in:
Valery Tschopp 2018-11-20 10:20:49 +00:00
parent a24e185832
commit 9d92dc6938

24
BUILD_DEBIAN.md Normal file
View File

@ -0,0 +1,24 @@
# Build Debian Package
You can build a Debian package (source and binary)
## Requirments
To build the package first install the required package building dependencies:
sudo apt-get install build-essential fakeroot devscripts
## Build package
Use the included `Makefile` to build the binary package:
make deb
And to build the source package:
make deb-src
And to clean the project:
make clean