core/libplist/PKGBUILD

27 lines
658 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
2014-12-12 17:53:46 +08:00
pkgver=1.11
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')
options=('!makeflags')
source=("http://www.libimobiledevice.org/downloads/$pkgname-$pkgver.tar.bz2")
2014-12-12 17:53:46 +08:00
md5sums=('82de65f38cb2f0a9fd0839679b46072b')
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
}