mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 20:57:14 +08:00
27 lines
665 B
Bash
27 lines
665 B
Bash
# Maintainer : Neophytos Kolokotronis <tetris4@gmail.com>
|
|
# Contributors from Arch: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
pkgname=libplist
|
|
pkgver=1.12
|
|
pkgrel=1
|
|
pkgdesc="A library to handle Apple Property List format whereas it's binary or XML"
|
|
url="http://libimobiledevice.org/"
|
|
arch=('x86_64')
|
|
license=('GPL2' 'LGPL2.1')
|
|
depends=('glib2' 'libxml2')
|
|
makedepends=('python2-cython')
|
|
options=('!makeflags')
|
|
source=("http://www.libimobiledevice.org/downloads/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('8b04b0f09f2398022dcd4fba75012997')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|