blob: 7efaa8a18d0f164acd5b3b6a55e1aa3d972a7603 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
# $Id: PKGBUILD 130674 2011-07-07 16:52:03Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgbase="foomatic"
pkgname=('foomatic-db' 'foomatic-filters' 'foomatic-db-engine' 'foomatic-db-nonfree')
arch=('i686' 'x86_64') # needs to be changed in the subpackages when makepkg will support it
_snapdate=20110707
_relver=4.0.7
pkgver=${_relver}_${_snapdate}
pkgrel=1
epoch=1
makedepends=('cups>=1.4.7' 'perl' 'libxml2' 'enscript' 'perl' 'net-snmp' 'bash')
source=(http://www.linuxprinting.org/download/foomatic/$pkgbase-{filters,db-engine}-${_relver}.tar.gz
http://www.linuxprinting.org/download/foomatic/$pkgbase-db-4.0-${_snapdate}.tar.gz
http://www.linuxprinting.org/download/foomatic/$pkgbase-db-nonfree-${_snapdate}.tar.gz)
url="http://www.linuxprinting.org/foomatic.html"
options=('!emptydirs')
md5sums=('20abd25c1c98b2dae68709062a132a7d'
'fcfa8eb9ce5494b81b58ae983fc2aeb5'
'88d467d9099188b170185564bd33d7b7'
'e12969b36dc0b59be6a973ee522d707e')
build() {
/bin/true
}
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() {
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')
optdepends=('perl: for the "beh" Backend End Handler used by cups'
'net-snmp: certain (mostly HP) printers need it to work')
# cd ${srcdir}/${pkgname}-${pkgver}
cd ${srcdir}/foomatic-filters-${_relver}
./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}/${pkgname}-${pkgver}
cd ${srcdir}/foomatic-db-engine-${_relver}
./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}
}
package_foomatic-db-nonfree() {
pkgdesc="Foomatic - database extension consisting of manufacturer-supplied PPD files released under non-free licenses"
# arch=('any')
license=('custom')
depends=('perl' 'libxml2' "foomatic-db-engine" 'foomatic-db')
# cd ${srcdir}/${pkgname}-${_snapdate}
cd ${srcdir}/foomatic-db-nonfree-${_snapdate}
./configure --prefix=/usr
make DESTDIR=${pkgdir} install
# install -Dm644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/COPYING
install -Dm644 COPYING ${pkgdir}/usr/share/licenses/foomatic-db-nonfree/COPYING
}
|