summaryrefslogtreecommitdiff
path: root/gnome-unstable/libgxps/PKGBUILD
blob: bc9f083e356f3f4310f1c8013f01ac1549eaab1f (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
# $Id: PKGBUILD 152922 2012-03-10 17:06:41Z ibiru $
# Maintainer: Ionut Biru <ibiru@archlinux.org>

pkgname=libgxps
pkgver=0.2.1
pkgrel=1
pkgdesc="XPS Documents library"
arch=(i686 x86_64)
url="https://live.gnome.org/libgxps"
license=('GPL2')
depends=('cairo' 'libarchive' 'libjpeg-turbo' 'libtiff' 'lcms2')
options=(!libtool)
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
sha256sums=('b4eb55db83d1268ae81b932cc468ff52b38b0a8d36d7f4c458763585fbad9781')

build() {
  cd "$pkgname-$pkgver"
  ./configure --prefix=/usr \
    --disable-static
  make
}

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

# vim:set ts=2 sw=2 et: