diff options
author | Ivan Shapovalov | 2024-04-30 11:56:08 +0300 |
---|---|---|
committer | Ivan Shapovalov | 2024-04-30 11:56:08 +0300 |
commit | 5dead60b10fc632d417e9569edf5c529b3f25b2b (patch) | |
tree | cbce7701d2ca96af8960968dab52df84e54d41e8 | |
parent | 31cebbece577f4b21c12b7486d054e991d20f94b (diff) | |
download | aur-libplist-git.tar.gz |
Bump, add python-setuptools makedep, resync against extra/libplist
-rw-r--r-- | .SRCINFO | 10 | ||||
-rw-r--r-- | PKGBUILD | 9 |
2 files changed, 10 insertions, 9 deletions
@@ -1,22 +1,22 @@ pkgbase = libplist-git pkgdesc = A library to handle Apple Property List format whereas it's binary or XML - pkgver = 2.3.0.r19.gd45396a + pkgver = 2.4.0.r7.g5461eda pkgrel = 1 epoch = 1 url = http://www.libimobiledevice.org/ arch = i686 arch = x86_64 - license = GPL2 - license = LGPL2.1 + license = LGPL-2.1-or-later makedepends = python makedepends = cython makedepends = git + makedepends = python-setuptools depends = gcc-libs depends = glibc - optdepends = python: for the Python bindings + optdepends = python: Python bindings provides = libplist-2.0.so provides = libplist++-2.0.so - provides = libplist=2.3.0.r19.gd45396a + provides = libplist=2.4.0.r7.g5461eda conflicts = libplist source = git+https://github.com/libimobiledevice/libplist sha256sums = SKIP @@ -6,15 +6,15 @@ pkgname=libplist-git epoch=1 -pkgver=2.3.0.r19.gd45396a +pkgver=2.4.0.r7.g5461eda pkgrel=1 pkgdesc="A library to handle Apple Property List format whereas it's binary or XML" url="http://www.libimobiledevice.org/" arch=('i686' 'x86_64') -license=('GPL2' 'LGPL2.1') +license=('LGPL-2.1-or-later') depends=('gcc-libs' 'glibc') -makedepends=('python' 'cython' 'git') -optdepends=('python: for the Python bindings') +makedepends=('python' 'cython' 'git' 'python-setuptools') +optdepends=('python: Python bindings') provides=(libplist-2.0.so libplist++-2.0.so "libplist=$pkgver") conflicts=('libplist') source=("git+https://github.com/libimobiledevice/libplist") @@ -33,6 +33,7 @@ prepare() { build() { cd libplist ./configure --prefix=/usr + sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool make } |