37375312b9
In issue https://github.com/termux/termux-packages/issues/6160 I have found that community repo "its-pointless.github.io" specifies us as maintainer for its packages. This is NOT TRUE and potentially misleads people using these packages. Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral and not specify maintainer. So all packages now have to override it to the correct value. [skip ci] %ci:no-build
15 lines
559 B
Bash
15 lines
559 B
Bash
TERMUX_PKG_HOMEPAGE=https://libusb.info/
|
|
TERMUX_PKG_DESCRIPTION="A C library that provides generic access to USB devices"
|
|
TERMUX_PKG_LICENSE="LGPL-2.1"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION=1.0.24
|
|
TERMUX_PKG_SRCURL=https://github.com/libusb/libusb/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=b7724c272dfc5713dce88ff717efd60f021ca5b7c8e30f08ebb2c42d2eea08ae
|
|
TERMUX_PKG_BREAKS="libusb-dev"
|
|
TERMUX_PKG_REPLACES="libusb-dev"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-udev"
|
|
|
|
termux_step_pre_configure() {
|
|
NOCONFIGURE=true ./autogen.sh
|
|
}
|