diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
commit | b6af1e02efe594039707cd882517663d5370f375 (patch) | |
tree | ff9c2d55873e051e82972ba64c017352d3a75d34 /unmaintained/usbmuxd | |
parent | a71346b7acebc600960a98c84fb32cfd72fe864b (diff) | |
download | aports-b6af1e02efe594039707cd882517663d5370f375.tar.bz2 aports-b6af1e02efe594039707cd882517663d5370f375.tar.xz |
testing/[multiple]: move unmaintained packages
This moves all packages from testing to unmaintained which have not been
updated for atleast 6 months. If you are affected by this commit please follow
this proceddure:
* make sure your packages build on all architectures
* move your pacakge(s) back to testing
* if you want to keep this package and can maintain it (or find somebody to
maintain it for you) for a minimum of 6 months ask it to be moved to community
Diffstat (limited to 'unmaintained/usbmuxd')
-rw-r--r-- | unmaintained/usbmuxd/APKBUILD | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/unmaintained/usbmuxd/APKBUILD b/unmaintained/usbmuxd/APKBUILD new file mode 100644 index 0000000000..962260ae45 --- /dev/null +++ b/unmaintained/usbmuxd/APKBUILD @@ -0,0 +1,45 @@ +# Contributor: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +pkgname=usbmuxd +pkgver=1.1.0 +pkgrel=0 +pkgdesc="USB Multiplex Daemon" +url="http://marcansoft.com/blog/iphonelinux/usbmuxd/" +arch="all" +license="GPL2 GPL3" +depends="" +depends_dev="" +makedepends="$depends_dev libimobiledevice-dev libusb-dev libplist-dev" +install="" +subpackages="$pkgname-doc" +source="http://www.libimobiledevice.org/downloads/usbmuxd-$pkgver.tar.bz2" + +_builddir="$srcdir"/$pkgname-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + ./configure \ + --prefix=/usr \ + --sbindir=/usr/bin \ + --enable-shared \ + --without-systemd + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="${pkgdir}" install +} + +md5sums="34361c59320cb0b1f9ebcd2798ee1b39 usbmuxd-1.1.0.tar.bz2" +sha256sums="3e8948b4fe4250ee5c4bd41ccd1b83c09b8a6f5518a7d131a66fd38bd461b42d usbmuxd-1.1.0.tar.bz2" +sha512sums="66aa0c40e912bf596b819098b87d88e9cf30b2e6352e607eeb778bd4f23bf9bb123fb6a6ecca2d4e4be3171e35d66200d632d2c9c80b1f2462bb45be8aa6912d usbmuxd-1.1.0.tar.bz2" |