mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
update 1.0.24 (2020-12-11) to 1.0.25 (2022-01-31) Changelog: - https://github.com/libusb/libusb/blob/master/ChangeLog 2022-01-31: v1.0.25 * Linux: Fix regression with some particular devices * Linux: Fix regression with libusb_handle_events_timeout_completed() * Linux: Fix regression with cpu usage in libusb_bulk_transfer * Darwin (macOS): Add support for detaching kernel drivers with authorization. * Darwin (macOS): Do not drop partial data on timeout. * Darwin (macOS): Silence pipe error in set_interface_alt_setting(). * Windows: Fix HID backend missing byte * Windows: Fix segfault with libusbk driver * Windows: Fix regression when using libusb0 driver * Windows: Support LIBUSB_TRANSFER_ADD_ZERO_PACKET on winusb * New NO_DEVICE_DISCOVERY option replaces WEAK_AUTHORITY option * Various other bug fixes and improvements
20 lines
808 B
Makefile
20 lines
808 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="libusb"
|
|
PKG_VERSION="1.0.25"
|
|
PKG_SHA256="8a28ef197a797ebac2702f095e81975e2b02b2eeff2774fa909c78a74ef50849"
|
|
PKG_LICENSE="LGPLv2.1"
|
|
PKG_SITE="http://libusb.info/"
|
|
PKG_URL="https://github.com/libusb/libusb/releases/download/v${PKG_VERSION}/libusb-${PKG_VERSION}.tar.bz2"
|
|
PKG_DEPENDS_TARGET="toolchain systemd"
|
|
PKG_LONGDESC="The libusb project's aim is to create a Library for use by user level applications to USB devices."
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="--enable-shared \
|
|
--enable-static \
|
|
--disable-log \
|
|
--disable-debug-log \
|
|
--enable-udev \
|
|
--disable-examples-build"
|