0
0
mirror of https://github.com/openwrt/packages.git synced 2025-08-05 18:21:45 +00:00
Files
packages/utils/ideviceinstaller/Makefile

56 lines
1.7 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:=ideviceinstaller
PKG_RELEASE:=1
PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=https://github.com/libimobiledevice/ideviceinstaller.git
PKG_SOURCE_DATE:=2025-07-14
PKG_SOURCE_VERSION:=1a081ff74c1b65825ac6537bd3462ec2e38cba4d
PKG_MIRROR_HASH:=9386bd3711b05c28dc9a9d292713340f7e7f936e8e3493534d2437b0fd234436
PKG_MAINTAINER:=Rosen Penev <rosenp@gmail.com>
PKG_LICENSE:=GPL-2.0-or-later
PKG_LICENSE_FILES:=COPYING
PKG_CPE_ID:=cpe:/a:libimobiledevice:ideviceinstaller
PKG_FIXUP:=autoreconf
PKG_INSTALL:=1
PKG_BUILD_PARALLEL:=1
include $(INCLUDE_DIR)/package.mk
define Package/ideviceinstaller
SECTION:=utils
CATEGORY:=Utilities
SUBMENU:=libimobiledevice
TITLE:=Manage apps and app archives on iOS devices
URL:=https://www.libimobiledevice.org/
DEPENDS:=+libimobiledevice +libzip
endef
define Package/ideviceinstaller/description
A command-line application to manage apps and app archives on iOS devices.
Allows interacting with the app installation service of an iOS device.
- Status: Install, upgrade, uninstall, and enumerate apps
- Browse: Allows to retrieve a list of installed apps with filter options
- Install: Supports app package, carrier bundle and developer .app directory
- Format: Allows command output in plist, XML, or JSON format
- Compatibility: Supports latest device firmware releases
endef
CONFIGURE_ARGS += \
PACKAGE_VERSION=$(PKG_VERSION)
define Package/ideviceinstaller/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ideviceinstaller $(1)/usr/bin/
endef
$(eval $(call BuildPackage,ideviceinstaller))