# $Id: PKGBUILD 155771 2012-04-06 10:09:10Z andyrtr $ # Maintainer: Andreas Radke pkgbase="foomatic" pkgname=('foomatic-db' 'foomatic-filters-libre' 'foomatic-db-engine') arch=('i686' 'x86_64' 'mips64el') # needs to be changed in the subpackages when makepkg will support it _snapdate=20120406 _filtersver=4.0.15 _enginever=4.0.8 pkgver=${_filtersver}_${_snapdate} pkgrel=1 epoch=1 makedepends=('cups' 'perl' 'libxml2' 'enscript' 'perl' 'net-snmp' 'bash') #_url=http://www.openprinting.org/download/foomatic/ # switch after build _url=ftp://ftp.archlinux.org/other/foomatic/ source=(https://repo.parabolagnulinux.org/other/${pkgbase}-filters-libre-${_filtersver}.tar.gz ${_url}/$pkgbase-db-engine-${_enginever}.tar.gz ${_url}/$pkgbase-db-4.0-${_snapdate}.tar.gz) url="http://www.linuxprinting.org/foomatic.html" options=('!emptydirs') mksource() { if [ ! -d ${pkgbase}-filters-libre-${_filtersver}/ ]; then wget -O - http://www.openprinting.org/download/foomatic/foomatic-filters-${_filtersver}.tar.gz | \ bsdtar xzf - mv ${pkgbase}-filters{,-libre}-${_filtersver}/ fi rm -rfv ${pkgbase}-filters-libre-${_filtersver}/test/{lsbfuncs,shfuncs,tcm,tetapi}.sh bsdtar cvzf ${pkgbase}-filters-libre-${_filtersver}.tar.gz ${pkgbase}-filters-libre-${_filtersver}/ } package_foomatic-db() { pkgdesc="Foomatic - The collected knowledge about printers, drivers, and driver options in XML files, used by foomatic-db-engine to generate PPD files." # arch=('any') license=('GPL' 'custom') depends=('perl' 'libxml2') replaces=('foomatic-db-ppd' 'foomatic-db-hpijs') conflicts=('foomatic-db-ppd' 'foomatic-db-hpijs') provides=('foomatic-db-hpijs') cd ${srcdir}/${pkgname}-${_snapdate} ./configure --prefix=/usr make DESTDIR=${pkgdir} install install -v -Dm644 ${srcdir}/${pkgname}-${_snapdate}/COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING } package_foomatic-filters-libre() { pkgdesc="Foomatic - Filter scripts used by the printer spoolers to convert the incoming PostScript data into the printer's native format." # arch=('i686' 'x86_64') license=('GPL') backup=(etc/foomatic/filter.conf) depends=('glibc') provides=("foomatic-filters=${pkgver}") replaces=('foomatic-filters') conflicts=('foomatic-filters') optdepends=('perl: for the "beh" Backend End Handler used by cups' 'net-snmp: certain (mostly HP) printers need it to work') cd ${srcdir}/foomatic-filters-${_filtersver} ./configure --prefix=/usr --sysconfdir=/etc make make DESTDIR=${pkgdir} install } package_foomatic-db-engine() { pkgdesc="Foomatic - Foomatic's database engine generates PPD files from the data in Foomatic's XML database. It also contains scripts to directly generate print queues and handle jobs." # arch=(i686 x86_64) license=('GPL') depends=('perl' 'libxml2' 'foomatic-filters' 'bash') cd ${srcdir}/foomatic-db-engine-${_enginever} ./configure --prefix=/usr make eval `perl -V:archname` make DESTDIR=${pkgdir} \ INSTALLARCHLIB=/usr/lib/perl5/vendor_perl/ \ INSTALLSITELIB=/usr/lib/perl5/vendor_perl/ \ INSTALLSITEARCH=/usr/lib/perl5/vendor_perl/ install /usr/bin/find ${pkgdir} -name '.packlist' -delete # fix permissions chmod 755 ${pkgdir}/usr/lib{,/perl5,/perl5/vendor_perl} }