Debreate is a utility to aid in creating Debian (.deb) packages. Currently it only supports binary packaging which allows packaging of pre-compiled or scripted applications, media, artwork, etc. for personal distribution. Plans for using backends such as dh_make & debuild (available in devscripts package) for creating source packages are in the works. But source packaging can be quite different & is a must if you want to get your packages into a distribution's official repositories or a Launchpad Personal Package Archive (PPA). The latter from which Debreate has recently become available.
The definition of Debian source packages may be a little confusing (as it was for me) for those that are new to the Debian format, or perhaps packaging in general. Debian source packages are essentially no different than common tarballed source archives & they can be available in many of the popular formats such as Gzip (.tar.gz), BZip2 (.tar.bz2), XZ (tar.xz), Lzip (tar.lzip), etc. To build Debian binary packages from source code, it must first be "debianized". Debianization involves creating a directory called 'debian' within the source root folder. Files with instructions, meta data, & more are placed within to instruct Debian tools, such as 'debuild', on how the source must be compiled & packaged into the final .deb. This is the process that must be taken to host software on repositories such as Lauchpad's PPA system. The debianized source is uploaded, then built & packaged on-site automatically. The resulting binary package (.deb) is published to the target PPA.
The source uses a generic Makefile for "building" (because I don't know how to use GNU Autotools or CMake very well). The source is not actually built, but the Makefile simply installs the scripts onto the system. Just open a terminal in the root directory & type 'make install'. To create a distribution package type 'make dist'. To uninstall type 'make uninstall'.
If you have debuild installed, you can run 'make debuild' from the command line to build the debian package (.deb).
Debreate needs these packages installed to run:
* python
* Version 2.7 is supported. The goal is to port it to Python 3.
* python-wxgtk (wxPython)
* python-wxgtk2.8 is supported by Debreate. For Ubuntu systems newer than Wily (15.10), backports will need to be enabled or a Wily repository mirror will have to be added to /etc/apt/sources.list.
* python-wxgtk3 support is available in the unstable development branch.
* python-wxversion
* dpkg
* If you are running a Debian/Ubuntu based system, then this is most likely already installed.
* fakeroot
* coreutils
These packages are recommended & enable some features:
* gvfs-bin
* lintian
It is recommended to build the .deb package with 'make debuild' & install via the system's package manager.
To run, launch the file named "init.py" (it should execute via mouse-click as well):
* './init.py' or 'python init.py'