mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 12:24:37 +08:00
24 lines
522 B
Bash
24 lines
522 B
Bash
pkgname=usbmuxd
|
|
pkgver=1.1.0
|
|
pkgrel=4
|
|
pkgdesc="USB Multiplex Daemon"
|
|
url="http://marcansoft.com/blog/iphonelinux/usbmuxd/"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2' 'GPL3')
|
|
depends=('libimobiledevice')
|
|
makedepends=('git')
|
|
install=usbmuxd.install
|
|
source=(http://www.libimobiledevice.org/downloads/usbmuxd-$pkgver.tar.bz2)
|
|
md5sums=('34361c59320cb0b1f9ebcd2798ee1b39')
|
|
|
|
build() {
|
|
cd usbmuxd-$pkgver
|
|
./configure --prefix=/usr --sbindir=/usr/bin
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd usbmuxd-$pkgver
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|