core/libplist/PKGBUILD

27 lines
665 B
Bash
Raw Normal View History

2012-11-22 23:14:05 +08:00
# Maintainer : Neophytos Kolokotronis <tetris4@gmail.com>
# Contributors from Arch: Ionut Biru <ibiru@archlinux.org>
pkgname=libplist
pkgver=1.12
2014-12-12 17:53:46 +08:00
pkgrel=1
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')
license=('GPL2' 'LGPL2.1')
2014-12-12 17:53:46 +08:00
depends=('glib2' 'libxml2')
makedepends=('python2-cython')
2014-12-12 17:53:46 +08:00
options=('!makeflags')
source=("http://www.libimobiledevice.org/downloads/$pkgname-$pkgver.tar.bz2")
md5sums=('8b04b0f09f2398022dcd4fba75012997')
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
}