diff options
author | tnut <thierryn1 at hispeed dot ch> | 2010-02-28 22:05:33 +0100 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2010-02-28 22:05:33 +0100 |
commit | 5ee5362e18f3d3f67553f6dcf4103bc097b2a8b9 (patch) | |
tree | e69aabd9447c4aeaab4788eea6f0c7be00cf4171 /extra/libcups/Pkgfile | |
parent | f03f39a74d2f6502712e73e49d67d346aa9d79d0 (diff) | |
download | nutyx-pakxe-5ee5362e18f3d3f67553f6dcf4103bc097b2a8b9.tar.gz nutyx-pakxe-5ee5362e18f3d3f67553f6dcf4103bc097b2a8b9.tar.bz2 nutyx-pakxe-5ee5362e18f3d3f67553f6dcf4103bc097b2a8b9.tar.xz nutyx-pakxe-5ee5362e18f3d3f67553f6dcf4103bc097b2a8b9.zip |
Ajout de libcups#1.4.2-1
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 +} |