23 lines
486 B
Plaintext
Raw Normal View History

2018-11-12 10:20:45 +11:00
# Description: Library giving userland programs access to USB devices
# URL: https://libusb.info/
2018-11-12 10:20:45 +11:00
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: eudev-32 libusb
name=libusb-32
2022-06-16 19:25:35 +02:00
version=1.0.26
2018-11-12 10:20:45 +11:00
release=1
2019-08-31 01:21:42 +10:00
source=(https://github.com/libusb/libusb/releases/download/v$version/${name%-*}-$version.tar.bz2)
2018-11-12 10:20:45 +11:00
2021-01-03 01:20:05 +11:00
build() {
2018-11-12 10:20:45 +11:00
cd ${name%-*}-$version
./configure \
--prefix=/usr \
--libdir=/usr/lib32
make
make DESTDIR=$PKG install
rm -r $PKG/usr/include
}