aports/testing/ifuse/APKBUILD
Hugo Osvaldo Barrera 184fee01eb testing/ifuse: add depends=usbmuxd
This is a runtime dependency; without it ifuse cannot communicate with
devices (and this is its only function).
2023-08-13 19:14:14 +00:00

35 lines
818 B
Plaintext

# Contributor: Kasper K <kasperkantz@outlook.com>
# Maintainer: Kasper K <kasperkantz@outlook.com>
pkgname=ifuse
pkgver=1.1.4
pkgrel=4
pkgdesc="Fuse filesystem to access the contents of iOS devices"
url="https://libimobiledevice.org"
arch="all"
license="LGPL-2.1-or-later"
depends="usbmuxd"
makedepends="eudev-dev libimobiledevice-dev fuse-dev"
subpackages="$pkgname-doc"
source="https://github.com/libimobiledevice/ifuse/releases/download/$pkgver/ifuse-$pkgver.tar.bz2"
build() {
./configure \
--host=$CHOST \
--build=$CBUILD \
--prefix=/usr \
--disable-static
make
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" install
}
sha512sums="
671fabb0828fb6dd5ddba80ef418005305f4ee4676ab1078513a83582e84616f47c8973c25e1fdd8897b08a01a135080898a55d3ad8b31e89c0bb72ee865cdff ifuse-1.1.4.tar.bz2
"