2012-01-12 06:41:03 +00:00
|
|
|
#
|
2014-05-05 23:12:52 +00:00
|
|
|
# Copyright (C) 2012-2014 OpenWrt.org
|
2012-01-12 06:41:03 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libimobiledevice
|
2014-05-05 23:12:52 +00:00
|
|
|
PKG_VERSION:=1.1.6
|
|
|
|
PKG_RELEASE:=1
|
2012-01-12 06:41:03 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2014-05-05 23:12:52 +00:00
|
|
|
PKG_SOURCE_URL:=http://www.libimobiledevice.org/downloads
|
|
|
|
PKG_MD5SUM:=274783651e9b772774cd9fed2fc52e08
|
2012-01-12 06:41:03 +00:00
|
|
|
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
|
|
|
$(call include_mk, python-package.mk)
|
|
|
|
|
|
|
|
define Package/libimobiledevice/Default
|
|
|
|
TITLE:=A library that talks to Apple devices.
|
|
|
|
URL:=http://www.libimobiledevice.org/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libimobiledevice/Default/description
|
|
|
|
libimobiledevice is a software library that talks the protocols to support
|
|
|
|
iPhone®, iPod Touch®, iPad® and Apple TV® devices.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libimobiledevice
|
|
|
|
$(call Package/libimobiledevice/Default)
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2014-05-05 23:12:52 +00:00
|
|
|
DEPENDS:=+libgcrypt +libgnutls $(ICONV_DEPENDS) +libplist +libtasn1 +libusbmuxd
|
2012-01-12 06:41:03 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libimobiledevice/description
|
|
|
|
$(call Package/libimobiledevice/Default/description)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libimobiledevice-utils
|
|
|
|
$(call Package/libimobiledevice/Default)
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
DEPENDS:=+libimobiledevice
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libimobiledevice-utils/description
|
|
|
|
$(call Package/libimobiledevice/Default/description)
|
|
|
|
This package contains the libimobiledevice utilities.
|
|
|
|
endef
|
|
|
|
|
2012-08-10 15:49:29 +00:00
|
|
|
CONFIGURE_VARS += \
|
|
|
|
libusbmuxd_CFLAGS="-I$(STAGING_DIR)/usr/include" \
|
2014-05-05 23:12:52 +00:00
|
|
|
libusbmuxd_LIBS="-L$(STAGING_DIR)/usr/lib -lusbmuxd" \
|
|
|
|
openssl_CFLAGS=" " \
|
|
|
|
openssl_LIBS=" "
|
2012-08-10 15:49:29 +00:00
|
|
|
|
2012-08-10 15:49:27 +00:00
|
|
|
CONFIGURE_ARGS += \
|
2014-05-05 23:12:52 +00:00
|
|
|
--without-cython \
|
|
|
|
--disable-largefile \
|
|
|
|
--disable-openssl
|
2012-01-12 06:41:03 +00:00
|
|
|
|
|
|
|
TARGET_LDFLAGS += -Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/libimobiledevice $(1)/usr/include/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libimobiledevice.{a,la,so*} $(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libimobiledevice-*.pc $(1)/usr/lib/pkgconfig/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libimobiledevice/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libimobiledevice.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libimobiledevice-utils/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/idevice* $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libimobiledevice))
|
|
|
|
$(eval $(call BuildPackage,libimobiledevice-utils))
|