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.
16 lines
461 B
16 lines
461 B
################################################################################
|
|
#
|
|
# libusb
|
|
#
|
|
################################################################################
|
|
|
|
LIBUSB_VERSION = 1.0.26
|
|
LIBUSB_DIR = libusb-$(LIBUSB_VERSION)
|
|
LIBUSB_SOURCE = libusb-$(LIBUSB_VERSION).tar.bz2
|
|
LIBUSB_SITE = https://github.com/libusb/libusb/releases/download/v$(LIBUSB_VERSION)
|
|
|
|
LIBUSB_CONF_OPTS = \
|
|
--disable-udev
|
|
|
|
libusb: | $(TARGET_DIR)
|
|
$(call autotools-package)
|
|
|