summaryrefslogtreecommitdiff
path: root/gnome-unstable/libplist/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-03-25 00:02:31 +0000
committerroot <root@rshg054.dnsready.net>2012-03-25 00:02:31 +0000
commit891f44722456b693d99b397f7e332a9ed68a47a2 (patch)
tree84b486efdd046bf1ac54f9288d13a443874be342 /gnome-unstable/libplist/PKGBUILD
parentadac5afd500d4ee3a65035e1cf5353ae236b4a61 (diff)
Sun Mar 25 00:02:31 UTC 2012
Diffstat (limited to 'gnome-unstable/libplist/PKGBUILD')
-rw-r--r--gnome-unstable/libplist/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnome-unstable/libplist/PKGBUILD b/gnome-unstable/libplist/PKGBUILD
new file mode 100644
index 000000000..479273b22
--- /dev/null
+++ b/gnome-unstable/libplist/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 154114 2012-03-23 13:52:45Z ibiru $
+# Maintainer : Ionut Biru <ibiru@archlinux.org>
+# Contributor: Gabriel Martinez < reitaka at gmail dot com >
+
+pkgname=libplist
+pkgver=1.8
+pkgrel=1
+pkgdesc="A library to handle Apple Property List format whereas it's binary or XML"
+url="http://libimobiledevice.org/"
+arch=('i686' 'x86_64')
+license=('GPL2' 'LGPL2.1')
+depends=('libxml2' 'python2')
+makedepends=('cmake' 'cython2')
+source=(http://www.libimobiledevice.org/downloads/$pkgname-$pkgver.tar.bz2)
+sha256sums=('a418da3880308199b74766deef2a760a9b169b81a868a6a9032f7614e20500ec')
+
+build() {
+ mkdir build
+ cd build
+ cmake ../"$pkgname-$pkgver" \
+ -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+ -DCYTHON_EXECUTABLE=/usr/bin/cython2 \
+ -DCMAKE_SKIP_RPATH=ON \
+ -DCMAKE_INSTALL_PREFIX:PATH=/usr
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}