mirror of
https://github.com/openwrt/packages.git
synced 2025-12-26 13:26:17 +04:00
Fuse filesystem access to iOS devices There have been no releases since 2020-06-16. Use the latest git 814a0e38050850937debd697fcfe6eca3de1b66f Signed-off-by: Georgi Valkov <gvalkov@gmail.com>
56 lines
1.6 KiB
Makefile
56 lines
1.6 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:=ifuse
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_PROTO:=git
|
|
PKG_SOURCE_URL:=https://github.com/libimobiledevice/ifuse.git
|
|
PKG_SOURCE_DATE:=2023-01-06
|
|
PKG_SOURCE_VERSION:=814a0e38050850937debd697fcfe6eca3de1b66f
|
|
PKG_MIRROR_HASH:=702eb5f850eca4bb7e5ec82f25026d0a2240041e7c0f614322608ed238ebb789
|
|
|
|
PKG_MAINTAINER:=Rosen Penev <rosenp@gmail.com>
|
|
PKG_LICENSE:=LGPL-2.1-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
PKG_CPE_ID:=cpe:/a:libimobiledevice:ifuse
|
|
|
|
PKG_FIXUP:=autoreconf
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ifuse
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
SUBMENU:=libimobiledevice
|
|
TITLE:=Fuse filesystem access to iOS devices
|
|
URL:=https://www.libimobiledevice.org/
|
|
DEPENDS:=+fuse-utils +libimobiledevice
|
|
endef
|
|
|
|
define Package/ifuse/description
|
|
A fuse filesystem implementation to access the contents of iOS devices.
|
|
This project allows mounting various directories of an iOS device locally
|
|
using the FUSE file system interface.
|
|
- Media: Mount media directory of an iOS device locally
|
|
- Apps: Mount sandbox container or document directory of an app
|
|
- Jailbreak: Mount root filesystem on jailbroken devices (requires AFC2 service)
|
|
- Browse: Allows to retrieve a list of installed file-sharing enabled apps
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
PACKAGE_VERSION=$(PKG_VERSION)
|
|
|
|
define Package/ifuse/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/ifuse $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ifuse))
|