2013-01-29 10:48:37 +00:00
|
|
|
#
|
2016-04-01 07:12:14 +00:00
|
|
|
# Copyright (C) 2010-2016 OpenWrt.org
|
2013-01-29 10:48:37 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libusb
|
2022-07-03 11:52:11 +00:00
|
|
|
PKG_VERSION:=1.0.26
|
2023-05-17 13:08:40 +00:00
|
|
|
PKG_RELEASE:=3
|
2013-01-29 10:48:37 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2018-05-01 21:13:56 +00:00
|
|
|
PKG_SOURCE_URL:=\
|
|
|
|
https://github.com/libusb/libusb/releases/download/v$(PKG_VERSION) \
|
|
|
|
@SF/$(PKG_NAME)
|
2022-07-03 11:52:11 +00:00
|
|
|
PKG_HASH:=12ce7a61fc9854d1d2a1ffe095f7b5fac19ddba095c259e6067a46500381b5a5
|
2013-01-29 10:48:37 +00:00
|
|
|
|
2021-01-04 00:27:09 +00:00
|
|
|
PKG_MAINTAINER:= Felix Fietkau <nbd@nbd.name>
|
|
|
|
PKG_LICENSE:=LGPL-2.1-or-later
|
|
|
|
PKG_LICENSE_FILES:=COPYING
|
2022-09-03 16:02:34 +00:00
|
|
|
PKG_CPE_ID:=cpe:/a:libusb:libusb
|
2013-01-29 10:48:37 +00:00
|
|
|
|
2021-01-04 00:27:09 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_BUILD_PARALLEL:=1
|
2013-01-29 10:48:37 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libusb-1.0
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=A library for accessing Linux USB devices
|
2022-07-03 11:52:11 +00:00
|
|
|
DEPENDS:=+libpthread +librt +libatomic
|
2018-04-28 05:13:46 +00:00
|
|
|
URL:=http://libusb.info/
|
2019-01-22 18:17:32 +00:00
|
|
|
ABI_VERSION:=0
|
2013-01-29 10:48:37 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libusb-1.0/description
|
|
|
|
libusb is a C library that gives applications easy access to USB devices on
|
|
|
|
many different operating systems.
|
|
|
|
endef
|
|
|
|
|
2022-09-14 19:16:50 +00:00
|
|
|
define Package/fxload
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
TITLE:=fxload firmware loader
|
|
|
|
URL:=http://linux-hotplug.sourceforge.net
|
|
|
|
DEPENDS:=+libusb-1.0
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/fxload/description
|
|
|
|
This program is conveniently able to download firmware into FX, FX2,
|
|
|
|
and FX2LP EZ-USB devices, as well as the original AnchorChips EZ-USB.
|
|
|
|
It is intended to be invoked by hotplug scripts when the unprogrammed
|
|
|
|
device appears on the bus.
|
|
|
|
endef
|
|
|
|
|
2013-01-29 10:48:37 +00:00
|
|
|
TARGET_CFLAGS += $(FPIC)
|
2015-01-11 16:14:23 +00:00
|
|
|
CONFIGURE_ARGS += \
|
2022-09-14 19:16:50 +00:00
|
|
|
--enable-examples-build \
|
|
|
|
--disable-log \
|
|
|
|
--disable-udev
|
2013-01-29 10:48:37 +00:00
|
|
|
|
|
|
|
define Build/InstallDev
|
2021-01-04 00:27:10 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include/libusb-1.0
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/libusb-1.0/libusb.h $(1)/usr/include/libusb-1.0/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libusb-1.0.* $(1)/usr/lib/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libusb-1.0.pc $(1)/usr/lib/pkgconfig/
|
2013-01-29 10:48:37 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libusb-1.0/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2022-06-16 22:25:39 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libusb-1.0.so* $(1)/usr/lib/
|
2013-01-29 10:48:37 +00:00
|
|
|
endef
|
|
|
|
|
2022-09-14 19:16:50 +00:00
|
|
|
define Package/fxload/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/examples/.libs/fxload $(1)/usr/sbin
|
|
|
|
endef
|
|
|
|
|
2013-01-29 10:48:37 +00:00
|
|
|
$(eval $(call BuildPackage,libusb-1.0))
|
2022-09-14 19:16:50 +00:00
|
|
|
$(eval $(call BuildPackage,fxload))
|