Merge pull request #10717 from WeekendSoftware/safe-search
[feed/packages.git] / utils / usbmuxd / Makefile
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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=usbmuxd
11 PKG_SOURCE_DATE:=2019-11-11
12 PKG_SOURCE_VERSION:=9af2b12552693a47601347e1eafc1e94132d727e
13 PKG_RELEASE:=1
14
15 PKG_SOURCE_PROTO:=git
16 PKG_SOURCE_URL=https://github.com/libimobiledevice/usbmuxd
17 PKG_MIRROR_HASH:=f0b8a5c7ec1625c06b52b4403696c2b6bcbc0da5256bc097b7db053fb14b6892
18
19 PKG_MAINTAINER:=
20 PKG_LICENSE:=GPL-2.0
21 PKG_LICENSE_FILES:=COPYING.GPLv2
22 PKG_CPE_ID:=cpe:/a:nikias_bassen:usbmuxd
23
24 PKG_FIXUP:=autoreconf
25 PKG_INSTALL:=1
26 PKG_BUILD_PARALLEL:=1
27
28 include $(INCLUDE_DIR)/package.mk
29
30 define Package/usbmuxd
31 SECTION:=utils
32 CATEGORY:=Utilities
33 TITLE:=USB multiplexing daemon
34 URL:=http://www.libimobiledevice.org/
35 DEPENDS:=+librt +libusb-1.0 +libusbmuxd +libopenssl +libimobiledevice
36 endef
37
38 define Package/usbmuxd/description
39 This daemon is in charge of multiplexing connections over USB to an iPhone or
40 iPod touch. To users, it means you can sync your music, contacts, photos, etc.
41 over USB. To developers, it means you can connect to any listening localhost
42 socket on the device. usbmuxd is not used for tethering data transfer, which
43 uses a dedicated USB interface as a virtual network device.
44 endef
45
46 CONFIGURE_ARGS += --without-systemd
47
48 define Package/usbmuxd/install
49 $(INSTALL_DIR) $(1)/usr/sbin
50 $(CP) $(PKG_INSTALL_DIR)/usr/sbin/usbmuxd $(1)/usr/sbin/
51 endef
52
53 $(eval $(call BuildPackage,usbmuxd))