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.

53 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_SOURCE:=$(PKG_NAME)-$(PKG_SOURCE_DATE).tar.gz
  16. PKG_SOURCE_URL=https://codeload.github.com/libimobiledevice/usbmuxd/tar.gz/$(PKG_SOURCE_VERSION)?
  17. PKG_HASH:=ca4275dbc21e8d9c926e65943b605ea5a6112d30eb3f9e655d3983da87ac6798
  18. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_SOURCE_VERSION)
  19. PKG_FIXUP:=autoreconf
  20. PKG_INSTALL:=1
  21. PKG_BUILD_PARALLEL:=1
  22. include $(INCLUDE_DIR)/package.mk
  23. define Package/usbmuxd
  24. SECTION:=utils
  25. CATEGORY:=Utilities
  26. TITLE:=USB multiplexing daemon
  27. URL:=http://www.libimobiledevice.org/
  28. DEPENDS:=+librt +libusb-1.0 +libusbmuxd +libopenssl +libimobiledevice
  29. endef
  30. define Package/usbmuxd/description
  31. This daemon is in charge of multiplexing connections over USB to an iPhone or
  32. iPod touch. To users, it means you can sync your music, contacts, photos, etc.
  33. over USB. To developers, it means you can connect to any listening localhost
  34. socket on the device. usbmuxd is not used for tethering data transfer, which
  35. uses a dedicated USB interface as a virtual network device.
  36. endef
  37. CONFIGURE_ARGS += --without-systemd
  38. define Package/usbmuxd/install
  39. $(INSTALL_DIR) $(1)/usr/sbin
  40. $(CP) $(PKG_INSTALL_DIR)/usr/sbin/usbmuxd $(1)/usr/sbin/
  41. endef
  42. $(eval $(call BuildPackage,usbmuxd))