Build debian package from planner 0.14.1 source
From this article I just learned how to build a debian package. In my case I built a package from the latest gnome/imendio planner source (0.14.1). After unpacking the tarball the following steps were necessary:
dh-make libglade2-dev libgnomecanvas2-dev libgconf2-dev libgnomeprintui2.2-dev libgnomeui-dev libgnomevfs2-dev libxslt1-dev
[2] http://www.debian-administration.org/articles/337
- Executing ./configure. If it fails, check if you have all the packages[1] installed.
- Executing dh_make:
dh_make -n -s -e <email-address>
- Editing the control file debian/control
- Editing the rules file debian/rules
# Add here commands to clean up after the build process.
since in planner's Makefile there is no distclean target.
-$(MAKE) clean - Editing the rules file debian/rules
# Add here commands to install the package into debian/planner.
since in planner's Makefile the install prefix is called prefix.
$(MAKE) install prefix=$(CURDIR)/debian/planner/usr/local - Executing
debian/rules clean
debian/rules build
debian/rules binary
dh-make libglade2-dev libgnomecanvas2-dev libgconf2-dev libgnomeprintui2.2-dev libgnomeui-dev libgnomevfs2-dev libxslt1-dev
[2] http://www.debian-administration.org/articles/337