37 lines
1.2 KiB
Bash
37 lines
1.2 KiB
Bash
# Template file for 'libimobiledevice'
|
|
pkgname=libimobiledevice
|
|
version=1.2.0
|
|
revision=9
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool pkg-config python-devel"
|
|
makedepends="python-devel libglib-devel libressl-devel libusb-devel libplist-devel libusbmuxd-devel"
|
|
short_desc="A library to communicate with Apple devices"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2,LGPL-2.1"
|
|
homepage="http://www.libimobiledevice.org/"
|
|
distfiles="http://www.libimobiledevice.org/downloads/${pkgname}-${version}.tar.bz2"
|
|
checksum=786b0de0875053bf61b5531a86ae8119e320edab724fc62fe2150cc931f11037
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
aarch64) configure_args="ac_cv_sys_file_offset_bits=yes ac_cv_sys_large_file=yes";;
|
|
esac
|
|
|
|
pre_configure() {
|
|
sed -i 's,SSLv3_,SSLv23_,g' src/idevice.c
|
|
sed -i 's,-L$(libdir),,g' cython/Makefile.am
|
|
export PYTHON_CPPFLAGS="-I${XBPS_CROSS_BASE}/usr/include/python2.7"
|
|
export PYTHON_LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib -lpython2.7"
|
|
autoreconf -fi
|
|
}
|
|
|
|
libimobiledevice-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|