33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
|
|
||
|
PACKAGE BUILDING:
|
||
|
|
||
|
For building the debian package, the following prerequisities are needed:
|
||
|
python-stdeb
|
||
|
|
||
|
To start the package building process, execute:
|
||
|
./setup.py bdist_deb
|
||
|
|
||
|
after succesful excecution, the package files can be found in the directory
|
||
|
./deb_dist/
|
||
|
|
||
|
INSTALLING LOCALLY:
|
||
|
|
||
|
For testing purposes the package can be installed by executing:
|
||
|
./setup.py install
|
||
|
|
||
|
However, because packages installed like that can not be easily removed,
|
||
|
it is recommended for non-dedicated development stations to build the debian package,
|
||
|
and install that package. It can subsequently be easily removed by doing
|
||
|
apt-get remove <package>
|
||
|
|
||
|
TESTING AND DEVELOPING LOCALLY:
|
||
|
If the required packages are installed, this package can be tested for development without installing.
|
||
|
The scripts in the root dir of the package are intended to start the applications locally without installing.
|
||
|
The package in the subfolder <package> will be used in that case.
|
||
|
|
||
|
*NOTE 1:
|
||
|
Dependent packages to need to be installed either though a debian package (recommended), or by issuing
|
||
|
./setup.py install
|
||
|
in their source folder.
|
||
|
|