]> granicus.if.org Git - zfs/commit
Add Debian and Slackware style packaging via alien
authorBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 27 Jul 2010 23:45:36 +0000 (16:45 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Wed, 28 Jul 2010 16:37:04 +0000 (09:37 -0700)
commit0f237a437966a4d1024c1d721f70158d9144a449
tree0759731b48ce2284e7ed7d01167b52e137ba37de
parent758275af4f1fc3880c361473f9a78d3eb1db4e0f
Add Debian and Slackware style packaging via alien

The long term fix for Debian and Slackware style packaging is
to add native support for building these packages.  Unfortunately,
that is a large chunk of work I don't have time for right now.
That said it would be nice to have at least basic packages for
these distributions.

As a quick short/medium term solution I've settled on using alien
to convert the RPM packages to DEB or TGZ style packages.  The
build system has been updated with the following build targets
which will first build RPM packages and then convert them as
needed to the target package type:

  make rpm: Create .rpm packages
  make deb: Create .deb packages
  make tgz: Create .tgz packages
  make pkg: Create the right package type for your distribution

The solution comes with lot of caveats and your mileage may vary.
But basically the big limitations are that the resulting packages:

  1) Will not have the correct dependency information.
  2) Will not include the kernel version in the release.
  3) Will not handle all differences between distributions.

But the resulting packages should be easy to install and remove
from your system and take care of running 'depmod -a' and such.
As I said at the top this is not the right long term solution.
If any of the upstream distribution maintainers want to jump in
and help do this right for their distribution I'd love the help.
Makefile.am
config/deb.am [new file with mode: 0644]
config/rpm.am
config/tgz.am [new file with mode: 0644]
config/zfs-build.m4
configure.ac