summaryrefslogtreecommitdiff
path: root/extra/gutenprint/PKGBUILD
blob: 0a8e7570480e5c2142e6fdde0c3906cf36304dca (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
# $Id: PKGBUILD 213362 2014-05-21 14:59:41Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>

pkgname=gutenprint
pkgver=5.2.10
pkgrel=1
pkgdesc="Top quality printer drivers for POSIX systems"
arch=('i686' 'x86_64')
license=('GPL')
install=gutenprint.install
#depends=('readline') # 'gnutls') # needs to be checked. build log says -Lgnutls but namcap doesn't detect it
depends=('glibc')
makedepends=('gimp' 'gtk2' 'cups' 'foomatic-db-engine' 'ghostscript')
optdepends=('cups:		to use cups printer spooler(recommended)'
            'foomatic-db-engine:	to use foomatic spooler'
            'ghostscript:	adds postscript support for ijsgutenprint'
            'gimp:		adds gutenprint plugin to gimp'
            'libusb: required for drivers that depend on gutenprint52usb backend')
source=(http://downloads.sourceforge.net/gimp-print/$pkgname-$pkgver.tar.bz2)
url="http://gimp-print.sourceforge.net/"
replaces=('gimp-print')
options=('!emptydirs')
sha1sums=('9690f9bf0a4c4c6c5a35b43d889ca8a3216c766c')

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  
  # sbindir is not properly taken over there
  sed -i "s:cups_sbindir=\"\/usr\/sbin\":cups_sbindir=\"\/usr\/bin\":g" m4/stp_cups.m4
  sed -i  "s:cups_sbindir=\"\${cups_prefix}\/sbin\":cups_sbindir=\"\${cups_prefix}\/bin\":" m4/stp_cups.m4

  sed -i "s:m4local:m4extra:" Makefile.am
  autoreconf -vfi
  
  ./configure --prefix=/usr \
    --sbindir=/usr/bin \
    --enable-samples \
	--enable-cups-ppds \
	--enable-cups-ppds-at-top-level \
	--disable-translated-cups-ppds \
	--disable-globalized-cups-ppds \
	--disable-static \
	--disable-static-genppd
  make
}

package() {
  cd ${srcdir}/${pkgname}-${pkgver}
  make DESTDIR=${pkgdir} install
}