blob: f163c64ababa132a1bbd43bd979865df8645de3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=libusb
pkgver=1.0.22
pkgrel=1
pkgdesc="Library for USB device communication"
url="https://libusb.info/"
arch="all"
license="LGPL-2.1+"
subpackages="$pkgname-dev"
makedepends="eudev-dev linux-headers"
source="https://github.com/libusb/libusb/releases/download/v$pkgver/$pkgname-$pkgver.tar.bz2"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr
make -j1
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="2a93ba48bb66b9775838c16d74f7269348d9bc163f94ccf2842d1108d95a41cf79f8c8065233bea410fb94261a462dbb08ecfa1a9b6d3ddf4a5980e6043f74f4 libusb-1.0.22.tar.bz2"
|