Jay Lanagan ab017f9a64 added xfburn and deps, fix gvfs
gvfs may fail footprint check if optional deps are installed
2023-07-25 20:05:53 -04:00

25 lines
698 B
Plaintext

# Description: A cross-platform protocol library to communicate with iOS devices
# URL: https://github.com/libimobiledevice/libimobiledevice
# Maintainer: mac-a-r0ni, j at lngn dot net
# Depends on: libusbmuxd python3-cython libplist
name=libimobiledevice
version=1.3.0
release=1
source=(https://github.com/libimobiledevice/libimobiledevice/releases/download/1.3.0/libimobiledevice-1.3.0.tar.bz2 libimobiledevice-libplist-2.3.0.patch)
build() {
cd $name-${version}*
# Fix build with libplist 2.3.0
patch -Np1 -i ../libimobiledevice-libplist-2.3.0.patch
autoreconf -fi
./configure --prefix=/usr
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
}