diff options
| author | Leo <thinkabit.ukim@gmail.com> | 2020-02-13 21:44:54 -0300 |
|---|---|---|
| committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-14 00:05:10 -0300 |
| commit | 617738ea5e8acfb3eaaf1c2f46734520a0bbbd31 (patch) | |
| tree | a2323d118d450bba3dbb3429f570b22b783a05f3 /testing | |
| parent | 5f580c412de14f7329bf77293a1c8bbce8a74d48 (diff) | |
| download | aports-617738ea5e8acfb3eaaf1c2f46734520a0bbbd31.tar.bz2 aports-617738ea5e8acfb3eaaf1c2f46734520a0bbbd31.tar.xz | |
testing/usbmuxd: new aport
https://github.com/libimobiledevice/usbmuxd
Socket Daemon to multiplex connections from iOS
Diffstat (limited to 'testing')
| -rw-r--r-- | testing/usbmuxd/APKBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/testing/usbmuxd/APKBUILD b/testing/usbmuxd/APKBUILD new file mode 100644 index 0000000000..82fbed193f --- /dev/null +++ b/testing/usbmuxd/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Leo <thinkabit.ukim@gmail.com> +# Maintainer: Leo <thinkabit.ukim@gmail.com> +pkgname=usbmuxd +pkgver=1.1.0 +pkgrel=0 +pkgdesc="Socket Daemon to multiplex connections from iOS" +url="https://github.com/libimobiledevice/usbmuxd" +arch="all" +makedepends="automake autoconf libtool libusb-dev libplist-dev + libimobiledevice-dev" +license="GPL-2.0-or-later" +subpackages="$pkgname-doc" +source="$pkgname-$pkgver.tar.gz::https://github.com/libimobiledevice/usbmuxd/archive/$pkgver.tar.gz" + +prepare() { + default_prepare + autoreconf -fi +} + +build() { + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var \ + --without-systemd + make +} + +check() { + make check +} + +package() { + make DESTDIR="$pkgdir" install +} + +sha512sums="c9735ca7294927a6ec42edbd948e6736e366e0b9fac90c109f3066dfe71b2aeb0272ce2a33784be30c4188f0a3a65f29e4515ae041ed7cf01d9d95ea751c2284 usbmuxd-1.1.0.tar.gz" |
