banip: release 0.9.6-1
[feed/packages.git] / utils / ideviceinstaller / Makefile
1 #
2 # This is free software, licensed under the GNU General Public License v2.
3 # See /LICENSE for more information.
4 #
5
6 include $(TOPDIR)/rules.mk
7
8 PKG_NAME:=ideviceinstaller
9 PKG_RELEASE:=1
10
11 PKG_SOURCE_PROTO:=git
12 PKG_SOURCE_URL:=https://github.com/libimobiledevice/ideviceinstaller.git
13 PKG_SOURCE_DATE:=2024-01-15
14 PKG_SOURCE_VERSION:=22872c3571b8d2646a9fbb74ec1d7e186941053d
15 PKG_MIRROR_HASH:=479d8694f36cf6aaa86dd4738d6fca29681b86957e516c317a3a58628f914fda
16
17 PKG_MAINTAINER:=Rosen Penev <rosenp@gmail.com>
18 PKG_LICENSE:=GPL-2.0-or-later
19 PKG_LICENSE_FILES:=COPYING
20 PKG_CPE_ID:=cpe:/a:libimobiledevice:ideviceinstaller
21
22 PKG_FIXUP:=autoreconf
23 PKG_INSTALL:=1
24 PKG_BUILD_PARALLEL:=1
25
26 include $(INCLUDE_DIR)/package.mk
27
28 define Package/ideviceinstaller
29 SECTION:=utils
30 CATEGORY:=Utilities
31 SUBMENU:=libimobiledevice
32 TITLE:=Manage apps and app archives on iOS devices
33 URL:=https://www.libimobiledevice.org/
34 DEPENDS:=+libimobiledevice +libzip
35 endef
36
37 define Package/ideviceinstaller/description
38 A command-line application to manage apps and app archives on iOS devices.
39 Allows interacting with the app installation service of an iOS device.
40 - Status: Install, upgrade, uninstall, and enumerate apps
41 - Browse: Allows to retrieve a list of installed apps with filter options
42 - Install: Supports app package, carrier bundle and developer .app directory
43 - Format: Allows command output in plist, XML, or JSON format
44 - Compatibility: Supports latest device firmware releases
45 endef
46
47 CONFIGURE_ARGS += \
48 PACKAGE_VERSION=$(PKG_VERSION)
49
50 define Package/ideviceinstaller/install
51 $(INSTALL_DIR) $(1)/usr/bin
52 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ideviceinstaller $(1)/usr/bin/
53 endef
54
55 $(eval $(call BuildPackage,ideviceinstaller))