summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 68896f4019ad5594cd52bdd6bfc7969dd8380c7f (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
# Maintainer: Chocobo1 <chocobo1 AT archlinux DOT net>

pkgname=libusb-git
pkgver=1.0.24.rc1.r0.g42ad1d1d
pkgrel=1
pkgdesc="A cross-platform library to access USB devices"
arch=('i686' 'x86_64')
url="https://libusb.info/"
license=('LGPL')
depends=('glibc' 'libudev.so')
makedepends=('git')
provides=('libusb' 'libusb-1.0.so')
conflicts=('libusb')
options=('staticlibs')
source=("git+https://github.com/libusb/libusb.git")
sha256sums=('SKIP')


pkgver() {
  cd "libusb"

  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

build() {
  cd "libusb"

  ./bootstrap.sh
  ./configure \
    --prefix="/usr"
  make
}

check() {
  cd "libusb"

  make check
}

package() {
  cd "libusb"

  make DESTDIR="$pkgdir" install
}