2012-11-22 23:14:05 +08:00
|
|
|
# Maintainer : Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
# Contributors from Arch: Ionut Biru <ibiru@archlinux.org>
|
2010-09-07 05:47:18 +08:00
|
|
|
|
|
|
|
pkgname=libplist
|
2016-08-13 03:32:38 +08:00
|
|
|
pkgver=1.12
|
2014-12-12 17:53:46 +08:00
|
|
|
pkgrel=1
|
2010-09-07 05:47:18 +08:00
|
|
|
pkgdesc="A library to handle Apple Property List format whereas it's binary or XML"
|
|
|
|
url="http://libimobiledevice.org/"
|
2012-11-22 23:14:05 +08:00
|
|
|
arch=('x86_64')
|
2010-09-07 05:47:18 +08:00
|
|
|
license=('GPL2' 'LGPL2.1')
|
2014-12-12 17:53:46 +08:00
|
|
|
depends=('glib2' 'libxml2')
|
2016-08-13 03:32:38 +08:00
|
|
|
makedepends=('python2-cython')
|
2014-12-12 17:53:46 +08:00
|
|
|
options=('!makeflags')
|
2013-03-27 00:21:30 +08:00
|
|
|
source=("http://www.libimobiledevice.org/downloads/$pkgname-$pkgver.tar.bz2")
|
2016-08-13 03:32:38 +08:00
|
|
|
md5sums=('8b04b0f09f2398022dcd4fba75012997')
|
2010-09-07 05:47:18 +08:00
|
|
|
|
|
|
|
build() {
|
2014-12-12 17:53:46 +08:00
|
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr
|
2012-11-22 23:14:05 +08:00
|
|
|
make
|
2010-12-22 06:11:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2014-12-12 17:53:46 +08:00
|
|
|
cd $pkgname-$pkgver
|
2012-11-22 23:14:05 +08:00
|
|
|
make DESTDIR="${pkgdir}" install
|
2010-09-07 05:47:18 +08:00
|
|
|
}
|