diff options
author | root <root@rshg054.dnsready.net> | 2012-06-08 00:01:46 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-06-08 00:01:46 +0000 |
commit | 7d11e9346ebd0f9c378952caee0c82d6ca815f4e (patch) | |
tree | 37cbc273cef015a41013f52ed6a90fb16eca34f4 /core/libusbx | |
parent | 334c2a7916a80d08b1c216cfbf02135e64891632 (diff) |
Fri Jun 8 00:01:46 UTC 2012
Diffstat (limited to 'core/libusbx')
-rw-r--r-- | core/libusbx/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/core/libusbx/PKGBUILD b/core/libusbx/PKGBUILD new file mode 100644 index 000000000..ac1363119 --- /dev/null +++ b/core/libusbx/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 160804 2012-06-06 10:38:17Z tpowa $ +# Maintainer: Tobias Powalowski <tpowa@archlinux.org> +pkgname=libusbx +pkgver=1.0.11 +pkgrel=2 +depends=('glibc') +pkgdesc="Library that provides generic access to USB device" +arch=(i686 x86_64) +url="http://libusbx.org" +license=('LGPL') +source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2) +options=(!libtool) +replaces=('libusb1' 'libusb') +provides=("libusb=$pkgver") +conflicts=("libusb") + +md5sums=('9aaab6aee72f65900cc731ecbffb4cf4') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +check() { + cd "${srcdir}/${pkgname}-${pkgver}" + make check +} + +package () { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |