summaryrefslogtreecommitdiff
path: root/extra/pixman/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-06-08 17:23:24 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-06-08 17:23:24 -0300
commitda4865e38266a85c230abd569a95aa7152c4f9e9 (patch)
tree610329610e1d43cd175b799f48942201b718329d /extra/pixman/PKGBUILD
parent19ae256a3867f63f4a1db7ed50da6f0bed71ec8d (diff)
parent4d91fc9a2dc38054b8748f27193dc3a6950bda3c (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/luaexpat/PKGBUILD community/qps/PKGBUILD extra/python-egenix-mx-base/PKGBUILD libre/thunderbird-libre/rePKGBUILD staging/kdesdk/PKGBUILD
Diffstat (limited to 'extra/pixman/PKGBUILD')
-rw-r--r--extra/pixman/PKGBUILD16
1 files changed, 12 insertions, 4 deletions
diff --git a/extra/pixman/PKGBUILD b/extra/pixman/PKGBUILD
index 366cf4e51..bf392b456 100644
--- a/extra/pixman/PKGBUILD
+++ b/extra/pixman/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 106857 2011-01-19 14:56:47Z jgc $
+# $Id: PKGBUILD 124049 2011-05-16 10:05:58Z jgc $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Contributor: Alexander Baldeck <alexander@archlinux.org>
pkgname=pixman
-pkgver=0.20.2
+pkgver=0.22.0
pkgrel=1
pkgdesc="Pixman library"
arch=(i686 x86_64 'mips64el')
@@ -12,14 +12,22 @@ license=('custom')
depends=('glibc')
options=('!libtool')
source=(http://xorg.freedesktop.org/releases/individual/lib/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('9972c8f8ce484f7649d9f588168cd29f61c05c63')
+sha1sums=('d24ea233755d7dce9f0d93136ad99fba8d4e4fa0')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --disable-static
make
- make check
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
}
+
+check() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make check
+}