mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-03 07:42:10 +01:00
34 lines
809 B
Plaintext
34 lines
809 B
Plaintext
# Contributor: Kasper K <kasperkantz@outlook.com>
|
|
# Maintainer: Kasper K <kasperkantz@outlook.com>
|
|
pkgname=ideviceinstaller
|
|
pkgver=1.1.1
|
|
pkgrel=3
|
|
pkgdesc="Manage apps of iOS devices"
|
|
url="https://libimobiledevice.org"
|
|
arch="all"
|
|
license="LGPL-2.1-or-later"
|
|
makedepends="libimobiledevice-dev libzip-dev"
|
|
subpackages="$pkgname-doc"
|
|
source="https://github.com/libimobiledevice/ideviceinstaller/releases/download/$pkgver/ideviceinstaller-$pkgver.tar.bz2"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
fd117a5745890746237f381c9fe0e01cf8ea06d9c2341da397c52e5ebc0e058c73797e349a0a81b2777f5333dafc32e5c32e9e2c99ee70a864be159fe73e9568 ideviceinstaller-1.1.1.tar.bz2
|
|
"
|