blob: 173e9107e8599ef8acab89f9eb0767d9811a5a24 (
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
|
# $Id: PKGBUILD 198180 2013-10-30 13:17:39Z allan $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgname=libgxps
pkgver=0.2.2
pkgrel=3
pkgdesc="XPS Documents library"
arch=(i686 x86_64 'mips64el')
url="https://live.gnome.org/libgxps"
license=('GPL2')
depends=('cairo' 'libarchive' 'libjpeg-turbo' 'libtiff' 'lcms2')
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
sha256sums=('39d104739bf0db43905c315de1d8002460f1a098576f4418f69294013a5820be')
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:
|