mirror of
https://github.com/openwrt/packages.git
synced 2025-02-12 00:00:55 +00:00
Notable changes - initial support for iPhone 16 restore - depends on libtatsu Signed-off-by: Georgi Valkov <gvalkov@gmail.com>
53 lines
1.4 KiB
Makefile
53 lines
1.4 KiB
Makefile
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=idevicerestore
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/libimobiledevice/idevicerestore.git
|
|
PKG_SOURCE_DATE:=2024-11-03
|
|
PKG_SOURCE_VERSION:=61a76ce6fc68e9bc14e3bb4ba7a20344afb1e300
|
|
PKG_MIRROR_HASH:=f01a3f6e9d001fd666f0fd56dfbee9d369e50c488287a1f3f6fbd009f7325bdc
|
|
|
|
PKG_MAINTAINER:=Rosen Penev <rosenp@gmail.com>
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/idevicerestore
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
SUBMENU:=libimobiledevice
|
|
TITLE:=Restore/upgrade firmware of iOS devices
|
|
URL:=https://github.com/libimobiledevice/idevicerestore
|
|
DEPENDS:=+libirecovery +libzip +libtatsu +usbmuxd
|
|
endef
|
|
|
|
define Package/idevicerestore/description
|
|
The idevicerestore tool allows to restore firmware files to iOS devices.
|
|
It is a full reimplementation of all granular steps which are performed
|
|
during restore of a firmware to a device.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
PACKAGE_VERSION=$(PKG_VERSION)
|
|
|
|
TARGET_LDFLAGS += $(if $(CONFIG_USE_GLIBC),-lpthread)
|
|
|
|
define Package/idevicerestore/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/idevicerestore $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,idevicerestore))
|