diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /core/libusb |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'core/libusb')
-rw-r--r-- | core/libusb/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/core/libusb/PKGBUILD b/core/libusb/PKGBUILD new file mode 100644 index 000000000..947361b3d --- /dev/null +++ b/core/libusb/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 101194 2010-11-28 15:05:41Z tpowa $ +# Maintainer: Jan de Groot <jgc@archlinux.org> +pkgname=libusb +pkgver=1.0.8 +pkgrel=1 +depends=('glibc') +pkgdesc="Library to enable user space application programs to communicate with USB devices." +arch=(i686 x86_64) +url="http://libusb.sourceforge.net/" +license=('LGPL') +source=(http://downloads.sourceforge.net/libusb/libusb-${pkgver}.tar.bz2) +options=(!libtool) +replaces=(libusb1) +md5sums=('37d34e6eaa69a4b645a19ff4ca63ceef') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package () { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |