diff options
author | sibelle <lesibel@free.fr> | 2010-02-28 23:01:53 +0100 |
---|---|---|
committer | sibelle <lesibel@free.fr> | 2010-02-28 23:01:53 +0100 |
commit | a9989f0024320eb987ee136c822c078dda59715b (patch) | |
tree | d42809604df2d56f50ab8e61956df14031bf60b0 /extra/libcups/Pkgfile | |
parent | d39b96da3a824aa47bb9609c8b3bc037e8d48f27 (diff) | |
parent | 32d0f976eeebb5c5dbe5fd7954a70af669dff431 (diff) | |
download | nutyx-pakxe-a9989f0024320eb987ee136c822c078dda59715b.tar.gz nutyx-pakxe-a9989f0024320eb987ee136c822c078dda59715b.tar.bz2 nutyx-pakxe-a9989f0024320eb987ee136c822c078dda59715b.tar.xz nutyx-pakxe-a9989f0024320eb987ee136c822c078dda59715b.zip |
Merge remote branch 'nutyx-2009/master'
Diffstat (limited to 'extra/libcups/Pkgfile')
-rwxr-xr-x | extra/libcups/Pkgfile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/libcups/Pkgfile b/extra/libcups/Pkgfile new file mode 100755 index 000000000..8e3b9212d --- /dev/null +++ b/extra/libcups/Pkgfile @@ -0,0 +1,32 @@ +# Description: Librairies pour Common UNIX Printing System, le système d'impression pour Linux +# URL: http://www.cups.org +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: libjpeg, libpng, libtiff, poppler, xdg-utils, dbus, hicolor-icon-theme, linux-pam + +name=libcups +version=1.4.2 +release=1 +source=( http://ftp.easysw.com/pub/cups/$version/cups-$version-source.tar.bz2) + + +build() { + cd cups-$version + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --with-logdir=/var/log/cups \ + --with-docdir=/usr/share/doc/cups \ + --enable-raw-printing \ + --enable-pdftops \ + --with-pdftops=pdftops \ + --mandir=/usr/share/man \ + --enable-threads \ + --enable-ssl \ + --enable-gnutls=no \ + --infodir=/usr/share/info + make -j3 + make BUILDROOT=$PKG install-headers install-libs + mkdir -p $PKG/usr/bin + install -m755 cups-config $PKG/usr/bin/cups-config +} |