* update libimobiledevice-glue to 1.3.1-1

This commit is contained in:
Alexander Baldeck 2024-11-17 18:04:58 +01:00
parent 268630ca12
commit e287329b91
2 changed files with 20 additions and 10 deletions

View File

@ -1,14 +1,18 @@
pkgbase = libimobiledevice-glue
pkgdesc = A library with common code used by libraries and tools around the libimobiledevice project
pkgver = 1.3.0
pkgver = 1.3.1
pkgrel = 1
url = https://libimobiledevice.org/
arch = x86_64
arch = powerpc64le
arch = powerpc64
arch = powerpc
arch = riscv64
license = LGPL-2.1-or-later
makedepends = git
depends = glibc
depends = libplist
source = git+https://github.com/libimobiledevice/libimobiledevice-glue.git#tag=1.3.0
b2sums = a132cbfee3d0acf6506555d1c6ddfda0775fcb51c8161c7c2f485c95d37a87d77a675f8a7671e151779bef1a81f155a726e5c85a27cca636d522b0b804fbbe01
source = git+https://github.com/libimobiledevice/libimobiledevice-glue.git#tag=1.3.1
b2sums = 20fb892f5a06ca5f07dfc109288b4c8cb7010dcdfe34f44b4bc27ff00fc8604567c2c2217d8b971421121cdf0b2f0a94c70bb2847bce8585f441ebae8b8291e6
pkgname = libimobiledevice-glue

View File

@ -2,16 +2,19 @@
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
pkgname=libimobiledevice-glue
pkgver=1.3.0
pkgrel=1.1
pkgver=1.3.1
pkgrel=1
pkgdesc='A library with common code used by libraries and tools around the libimobiledevice project'
arch=(x86_64 powerpc64le powerpc64 powerpc riscv64)
url='https://libimobiledevice.org/'
license=('LGPL-2.1-or-later')
depends=('glibc' 'libplist')
makedepends=('git')
license=(LGPL-2.1-or-later)
depends=(
glibc
libplist
)
makedepends=(git)
source=("git+https://github.com/libimobiledevice/libimobiledevice-glue.git#tag=$pkgver")
b2sums=('a132cbfee3d0acf6506555d1c6ddfda0775fcb51c8161c7c2f485c95d37a87d77a675f8a7671e151779bef1a81f155a726e5c85a27cca636d522b0b804fbbe01')
b2sums=(20fb892f5a06ca5f07dfc109288b4c8cb7010dcdfe34f44b4bc27ff00fc8604567c2c2217d8b971421121cdf0b2f0a94c70bb2847bce8585f441ebae8b8291e6)
prepare() {
cd $pkgname
@ -20,7 +23,10 @@ prepare() {
build() (
cd $pkgname
./configure --prefix=/usr
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
)