mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-22 14:52:19 +01:00
21 lines
437 B
Plaintext
21 lines
437 B
Plaintext
# Description: Handle usbmux protocol connections with iOS devices
|
|
# URL: https://libimobiledevice.org/
|
|
# Maintainer: mac-a-r0ni, j at lngn dot net
|
|
# Depends on: libplist
|
|
|
|
name=libusbmuxd
|
|
version=2.0.2
|
|
release=1
|
|
source=(https://github.com/libimobiledevice/$name/releases/download/$version/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -f $PKG/{,usr/}lib/*.la
|
|
}
|