blob: a9ab1bf1cf8bd2febb0c3b72dfa03d627fdd2700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Description: Lib support de iPhone et iPod
# URL: http://libimobiledevice.org/
# Maintainer: NuTyX core team
# Packager: lesibel at free dot fr
# Depends on: gnutls, libplist, usbmuxd, libtasn1
# Run on: gnutls,libplist,usbmuxd,libtasn1
name=libimobiledevice
version=1.0.4
release=2
source=(http://libimobiledevice.org/downloads/$name-$version.tar.bz2 \
libimobiledevice-1.0.4-swig-version.patch)
build() {
cd $name-$version
patch -p1 -i ../libimobiledevice-1.0.4-swig-version.patch
PYTHON=python2 ./configure --prefix=/usr
make
make DESTDIR=$PKG install
}
|