updated on Thu Jan 19 16:10:29 UTC 2012
[aur-mirror.git] / libgnomeprint / PKGBUILD
blobeb69bfbba2dc89dcf4b13cca46754f0ed8dc3565
1 # Maintainer: Alexander Rødseth <rodseth@gmail.com>
2 # Contributor: Jan de Groot <jgc@archlinux.org>
3 pkgname=libgnomeprint
4 pkgver=2.18.8
5 pkgrel=5
6 pkgdesc="Printing routines for GNOME"
7 arch=('x86_64' 'i686')
8 license=('LGPL' 'GPL')
9 depends=('pango' 'libart-lgpl' 'libxml2' 'libgnomecups' 'libgcrypt' 'bzip2')
10 makedepends=('intltool' 'pkgconfig')
11 replaces=('libgnomeprint-cups')
12 conflicts=('libgnomeprint-cups')
13 url="http://www.gnome.org"
14 options=('!libtool')
15 source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.18/${pkgname}-${pkgver}.tar.bz2
16         bug653388.patch)
17 sha256sums=('1034ec8651051f84d2424e7a1da61c530422cc20ce5b2d9e107e1e46778d9691'
18             'f42a74fab4ff93f27b774755e75452acd08f57b886834d607b9dc7f67bcce164')
20 build() {
21   cd "$srcdir/$pkgname-$pkgver"
23   patch -Np1 -i "$srcdir/bug653388.patch"
24   ./configure --prefix=/usr --disable-static
25   make
28 package() {
29   cd "$srcdir/$pkgname-$pkgver"
31   make DESTDIR="$pkgdir" install
34 # vim:set ts=2 sw=2 et: