You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.6 KiB

  1. #
  2. # Copyright (C) 2012-2014 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=usbmuxd
  9. PKG_SOURCE_DATE:=2019-03-04
  10. PKG_SOURCE_VERSION:=b1b0bf390363fa36aff1bc09443ff751943b9c34
  11. PKG_RELEASE:=1
  12. PKG_MAINTAINER:=
  13. PKG_LICENSE:=GPL-2.0
  14. PKG_LICENSE_FILES:=COPYING.GPLv2
  15. PKG_CPE_ID:=cpe:/a:nikias_bassen:usbmuxd
  16. PKG_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_DATE).tar.gz
  17. PKG_SOURCE_URL=https://codeload.github.com/libimobiledevice/usbmuxd/tar.gz/$(PKG_SOURCE_VERSION)?
  18. PKG_HASH:=ca4275dbc21e8d9c926e65943b605ea5a6112d30eb3f9e655d3983da87ac6798
  19. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_SOURCE_VERSION)
  20. PKG_FIXUP:=autoreconf
  21. PKG_INSTALL:=1
  22. PKG_BUILD_PARALLEL:=1
  23. include $(INCLUDE_DIR)/package.mk
  24. define Package/usbmuxd
  25. SECTION:=utils
  26. CATEGORY:=Utilities
  27. TITLE:=USB multiplexing daemon
  28. URL:=http://www.libimobiledevice.org/
  29. DEPENDS:=+librt +libusb-1.0 +libusbmuxd +libopenssl +libimobiledevice
  30. endef
  31. define Package/usbmuxd/description
  32. This daemon is in charge of multiplexing connections over USB to an iPhone or
  33. iPod touch. To users, it means you can sync your music, contacts, photos, etc.
  34. over USB. To developers, it means you can connect to any listening localhost
  35. socket on the device. usbmuxd is not used for tethering data transfer, which
  36. uses a dedicated USB interface as a virtual network device.
  37. endef
  38. CONFIGURE_ARGS += --without-systemd
  39. define Package/usbmuxd/install
  40. $(INSTALL_DIR) $(1)/usr/sbin
  41. $(CP) $(PKG_INSTALL_DIR)/usr/sbin/usbmuxd $(1)/usr/sbin/
  42. endef
  43. $(eval $(call BuildPackage,usbmuxd))