summaryrefslogtreecommitdiffstats
path: root/abs/extra/libplist/PKGBUILD
blob: 3e67eb54b1d6d2caaf50c55e06d67a543efed4b8 (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
29
30
# $Id$
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: Gabriel Martinez < reitaka at gmail dot com >

pkgname=libplist
pkgver=1.8
pkgrel=2
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=('glib2' 'libxml2' 'python2')
makedepends=('cmake' 'swig')
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 \
      -DCMAKE_SKIP_RPATH=ON \
      -DCMAKE_INSTALL_PREFIX:PATH=/usr
  make
}

package() {
  cd build
  make DESTDIR="$pkgdir" install
}