Creating Debian Packages: Difference between revisions
From IHRIS Wiki
m (→Super Simple) |
|||
Line 12: | Line 12: | ||
== Not So Hard Way == | == Not So Hard Way == | ||
* Install [http://bazaar-vcs.org/ Bazaar] and [https://edge.launchpad.net/bzr-builddeb bzr-builddeb] as well as the build dependencies dpatch and debhelper. (“<tt>apt-get install bzr-builddeb dpatch debhelper</tt>”) | |||
* Check out [http://code.launchpad.net/~hexmode my debian build scripts]. I suggest doing this in a separate directory. For example: | |||
<pre> | <pre> | ||
$ mkdir build | $ mkdir build | ||
Line 20: | Line 20: | ||
$ bzr co http://bazaar.launchpad.net/~hexmode/ihris-common/debian-dev ihris-common | $ bzr co http://bazaar.launchpad.net/~hexmode/ihris-common/debian-dev ihris-common | ||
$ bzr co http://bazaar.launchpad.net/~hexmode/ihris-manage/debian-dev ihris-manage | $ bzr co http://bazaar.launchpad.net/~hexmode/ihris-manage/debian-dev ihris-manage | ||
</pre> | </pre> | ||
* In each directory, run “<tt>bzr builddeb</tt>”. | |||
<pre> | <pre> | ||
$ (cd i2ce; bzr builddeb) | $ (cd i2ce; bzr builddeb) | ||
$ (cd ihris-common; bzr builddeb) | $ (cd ihris-common; bzr builddeb) | ||
$ (cd ihris-manage; bzr builddeb) | $ (cd ihris-manage; bzr builddeb) | ||
</pre> | </pre> | ||
* You should now have a subdirectory named build-area with three .deb files in it. Before installing them, you'll need to install the runtime dependencies: <tt>aptitude install dbcommon-config ucf libapache2-mod-php5 php-i18nv2 php-mdb2-driver-mysql php-text-password</tt>. At this time, some are only available from the IntraHealth Debian repository above. | |||
* Install the Debian packages you created: <tt>sudo dpkg -i build-area/*.deb</tt> |
Revision as of 15:21, 6 October 2007
Super Simple
- Add http://www.intrahealth.org/debian/ to your /etc/apt/sources.list file. Use a line like the following:
deb http://www.intrahealth.org/debian ./
- If you don't have mysql-server installed, you'll want to install it. Alternatively, you can use mysql on another host (though this is not yet tested).
- Run “aptitude install ihris-manage”.
- Visit http://localhost/iHRIS/Manage
- You should have the bare-bones installation running. If you want to modify the apache setup, change /etc/apache2/conf.d/ihris-mananage.conf.
Not So Hard Way
- Install Bazaar and bzr-builddeb as well as the build dependencies dpatch and debhelper. (“apt-get install bzr-builddeb dpatch debhelper”)
- Check out my debian build scripts. I suggest doing this in a separate directory. For example:
$ mkdir build $ cd build $ bzr co http://bazaar.launchpad.net/~hexmode/i2ce/debian-dev i2ce $ bzr co http://bazaar.launchpad.net/~hexmode/ihris-common/debian-dev ihris-common $ bzr co http://bazaar.launchpad.net/~hexmode/ihris-manage/debian-dev ihris-manage
- In each directory, run “bzr builddeb”.
$ (cd i2ce; bzr builddeb) $ (cd ihris-common; bzr builddeb) $ (cd ihris-manage; bzr builddeb)
- You should now have a subdirectory named build-area with three .deb files in it. Before installing them, you'll need to install the runtime dependencies: aptitude install dbcommon-config ucf libapache2-mod-php5 php-i18nv2 php-mdb2-driver-mysql php-text-password. At this time, some are only available from the IntraHealth Debian repository above.
- Install the Debian packages you created: sudo dpkg -i build-area/*.deb