updated on Sun Jan 22 16:00:49 UTC 2012
[aur-mirror.git] / libgnomecups / PKGBUILD
blob416e1a5f8e56932e854330efc531a5340b9c96f7
1 # Maintainer: Alexander Rødseth <rodseth@gmail.com>
2 # Contributor: Jan de Groot <jgc@archlinux.org>
3 # Contributor: Paulius Palevicius <paulius@birzai.com>
4 pkgname=libgnomecups
5 pkgver=0.2.3
6 pkgrel=10
7 pkgdesc="GNOME CUPS library"
8 arch=('x86_64' 'i686')
9 license=('LGPL' 'GPL')
10 url="http://www.gnome.org/"
11 depends=('libcups')
12 makedepends=('perlxml')
13 options=(!libtool)
14 source=("http://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.2/$pkgname-$pkgver.tar.bz2"
15         "libgnomecups_0.2.3-ignore-ipp-not-found.patch")
16 md5sums=('dc4920c15c9f886f73ea74fbff0ae48b'
17          '973a1b9d93013ce431400a14b78f5d94')
19 build() {
20   cd "$srcdir/$pkgname-$pkgver"
22   # This avoids generating huge 'IPP request failed with status 1030' lines
23   patch -Np1 -i "$srcdir/libgnomecups_0.2.3-ignore-ipp-not-found.patch"
25   ./configure --prefix=/usr
26   make
29 package() {
30   cd "$srcdir/$pkgname-$pkgver"
32   make DESTDIR="$pkgdir" install
35 # vim:set ts=2 sw=2 et: