33 lines
920 B
Bash
33 lines
920 B
Bash
# Template file for 'hidapi'
|
|
pkgname=hidapi
|
|
version=0.10.1
|
|
revision=1
|
|
wrksrc="${pkgname}-${pkgname}-${version}"
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool pkg-config"
|
|
makedepends="eudev-libudev-devel libusb-devel"
|
|
short_desc="Simple library for communicating with USB and Bluetooth HID devices"
|
|
maintainer="Ulf <void@uw.anonaddy.com>"
|
|
license="BSD-3-Clause"
|
|
homepage="https://github.com/libusb/hidapi"
|
|
distfiles="https://github.com/libusb/hidapi/archive/hidapi-${version}.tar.gz"
|
|
checksum=f71dd8a1f46979c17ee521bc2117573872bbf040f8a4750e492271fc141f2644
|
|
|
|
pre_configure() {
|
|
./bootstrap
|
|
}
|
|
post_install() {
|
|
rm -r ${DESTDIR}/usr/share
|
|
vlicense LICENSE-bsd.txt LICENSE
|
|
}
|
|
|
|
hidapi-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|