1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Building .deb files
To build .deb files make sure you've have installed debhelper, dpkg-buildpackage and fakeroot
* copy the dpkg directory to debian
* run "dpkg-buildpackage -rfakeroot"
this will create the .deb files in the parent directory
Building .rpm files
To build .rpm files make sure you've have installed rpmbuild
* rename the distrubted tar.gz file if necessary; applies to experimental, alpha and beta versions
"mv libpff-alpha-<version>.tar.gz libpff-<version>.tar.gz"
* run "rpmbuild -ta libpff-<version>.tar.gz"
this will create the .rpm files in the rpmbuild tree, commonly ~/rpmbuild/RPMS/...
Solaris
To build libpff on Solaris make sure that /usr/ccs/bin and /usr/sfw/bin are defined in the PATH environment variable
Also see:
* README.dll
* README.macosx
* README.mingw
* README.static
|