diff options
author | Koen Kooi <koen@openembedded.org> | 2010-03-25 13:37:08 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-03-25 17:19:36 +0100 |
commit | 0ba324cf2d74d3da92be2c688a7ca6a984937e38 (patch) | |
tree | 2d24143f7e366936b9310e81b7501f6d9a74ca43 | |
parent | f58f17398a6f1fd27b867ed950d8f2d6960031e6 (diff) |
libimobiledevice: add 1.0.0
-rw-r--r-- | recipes/libgpod/libimobiledevice_1.0.0.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes/libgpod/libimobiledevice_1.0.0.bb b/recipes/libgpod/libimobiledevice_1.0.0.bb new file mode 100644 index 0000000000..8744874f19 --- /dev/null +++ b/recipes/libgpod/libimobiledevice_1.0.0.bb @@ -0,0 +1,23 @@ +DESCRIPTION = "A protocol library to access an iPhone or iPod Touch in Linux" +LICENSE = "GPLv2/LGPLv2.1" + +DEPENDS = "libplist swig usbmuxd glib-2.0 gnutls libgcrypt" + +inherit autotools + +SRC_URI = "http://cloud.github.com/downloads/MattColyer/libiphone/libimobiledevice-${PV}.tar.bz2;name=archive" +SRC_URI[archive.md5sum] = "c86584080eae622c6da1782fc9bb39aa" +SRC_URI[archive.sha256sum] = "1620ed57441f1fb6a5f62ab4579213a0b1193f301a4c198ac1d013dd62eff480" + +# needed for configure +export HOST_SYS +export BUILD_SYS +export STAGING_LIBDIR +export STAGING_INCDIR + +EXTRA_OECONF = " --without-swig " + +do_configure_prepend() { + sed -i -e /SWIG_PYTHON/d ${S}/configure.ac +} + |