mirror of
https://github.com/openwrt/packages.git
synced 2025-02-07 04:39:51 +00:00
Notable changes - add detection and note about passcode requirement for iOS 16.1 - add support for iOS 17+ Personalized Developer Disk image mounting - fix heap buffer overflow in ideviceimagemounter - tools/afcclient: add missing time.h header - depends on libtatsu, which depends on libcurl Signed-off-by: Georgi Valkov <gvalkov@gmail.com>
93 lines
2.6 KiB
Makefile
93 lines
2.6 KiB
Makefile
#
|
|
# Copyright (C) 2012-2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libimobiledevice
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/libimobiledevice/libimobiledevice.git
|
|
PKG_SOURCE_DATE:=2024-10-27
|
|
PKG_SOURCE_VERSION:=5aebbc0c694d1048712505195c32a17c3091d417
|
|
PKG_MIRROR_HASH:=26f3b15e2cb7d79b20541f3c53852014415f9ca527dc13ffe0184bec24d9e69f
|
|
|
|
PKG_MAINTAINER:=Rosen Penev <rosenp@gmail.com>
|
|
PKG_LICENSE:=LGPL-2.1-or-later
|
|
PKG_LICENSE_FILES:=COPYING.LESSER
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libimobiledevice/Default
|
|
TITLE:=A library that talks to Apple devices.
|
|
URL:=https://www.libimobiledevice.org/
|
|
SUBMENU:=libimobiledevice
|
|
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
|
|
DEPENDS:=+libplist +libimobiledevice-glue +libtatsu +libusbmuxd +libopenssl
|
|
LICENSE:=LGPL-2.1-or-later
|
|
LICENSE_FILES:=COPYING.LESSER
|
|
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
|
|
LICENSE:=GPL-2.0-or-later
|
|
ICENSE_FILES:=COPYING
|
|
endef
|
|
|
|
define Package/libimobiledevice-utils/description
|
|
$(call Package/libimobiledevice/Default/description)
|
|
This package contains the libimobiledevice utilities.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-static \
|
|
--without-cython \
|
|
PACKAGE_VERSION=$(PKG_VERSION)
|
|
|
|
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-1.0.so* $(1)/usr/lib/
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libimobiledevice-1.0.pc $(1)/usr/lib/pkgconfig/
|
|
endef
|
|
|
|
define Package/libimobiledevice/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libimobiledevice-1.0.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))
|