new package: add package 'libimobiledevice'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2011-01-06 20:25:49 +01:00
parent ae01dec58e
commit 6ad0a5f21d
3 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#!/bin/sh
. config/options $1
cd $PKG_BUILD
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--sysconfdir=/etc \
--disable-static \
--enable-shared \
--without-swig \
--disable-largefile \
--with-gnu-ld
make V=1
$MAKEINSTALL

View File

@ -0,0 +1,6 @@
#!/bin/sh
. config/options $1
mkdir -p $INSTALL/usr/lib
cp -P $PKG_BUILD/src/.libs/*.so* $INSTALL/usr/lib

View File

@ -0,0 +1,16 @@
PKG_NAME="libimobiledevice"
PKG_VERSION="1.0.4"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="GPL"
PKG_SITE="http://www.libimobiledevice.org/"
PKG_URL="http://www.libimobiledevice.org/downloads/$PKG_NAME-$PKG_VERSION.tar.bz2"
PKG_DEPENDS="usbmuxd glib gnutls libtasn1 libplist"
PKG_BUILD_DEPENDS="toolchain usbmuxd glib gnutls libtasn1 libplist"
PKG_PRIORITY="optional"
PKG_SECTION="devel"
PKG_SHORTDESC="libimobiledevice: a software library that talks the protocols to support iPhone®, iPod Touch®, iPad® and Apple TV® devices."
PKG_LONGDESC="libimobiledevice is a software library that talks the protocols to support iPhone®, iPod Touch®, iPad® and Apple TV® devices."
PKG_IS_ADDON="no"
PKG_AUTORECONF="yes"