libusb: cleanup PKG_ variables
[openwrt/openwrt.git] / package / libs / libusb / Makefile
1 #
2 # Copyright (C) 2010-2016 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:=libusb
11 PKG_VERSION:=1.0.24
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=\
16 https://github.com/libusb/libusb/releases/download/v$(PKG_VERSION) \
17 @SF/$(PKG_NAME)
18 PKG_HASH:=7efd2685f7b327326dcfb85cee426d9b871fd70e22caa15bb68d595ce2a2b12a
19
20 PKG_MAINTAINER:= Felix Fietkau <nbd@nbd.name>
21 PKG_LICENSE:=LGPL-2.1-or-later
22 PKG_LICENSE_FILES:=COPYING
23
24 PKG_INSTALL:=1
25 PKG_BUILD_PARALLEL:=1
26
27 include $(INCLUDE_DIR)/package.mk
28
29 define Package/libusb-1.0
30 SECTION:=libs
31 CATEGORY:=Libraries
32 TITLE:=A library for accessing Linux USB devices
33 DEPENDS:=+libpthread +librt
34 URL:=http://libusb.info/
35 ABI_VERSION:=0
36 endef
37
38 define Package/libusb-1.0/description
39 libusb is a C library that gives applications easy access to USB devices on
40 many different operating systems.
41 endef
42
43 TARGET_CFLAGS += $(FPIC)
44 CONFIGURE_ARGS += \
45 --disable-udev \
46 --disable-log
47
48 define Build/InstallDev
49 $(CP) $(PKG_INSTALL_DIR)/* $(1)/
50 endef
51
52 define Package/libusb-1.0/install
53 $(INSTALL_DIR) $(1)/usr/lib
54 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libusb*.so.* $(1)/usr/lib/
55 endef
56
57 $(eval $(call BuildPackage,libusb-1.0))