|
#
|
|
# 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_SOURCE_DATE:=2019-12-26
|
|
PKG_SOURCE_VERSION:=8207daaa2ac3cb3a5107aae6aefee8ecbe39b6d4
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL=https://github.com/libimobiledevice/idevicerestore
|
|
PKG_MIRROR_HASH:=2b035df6a2c831300fee253e7b2ee6ceb5668a717d6f256e7335950b1b9fcfc0
|
|
|
|
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 +libcurl +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
|
|
|
|
define Package/idevicerestore/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/idevicerestore $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,idevicerestore))
|