core/libusb/PKGBUILD

24 lines
641 B
Bash
Raw Normal View History

2010-03-13 23:25:19 +08:00
# $Id: PKGBUILD 69309 2010-02-20 09:24:51Z allan $
# Maintainer:
# Contributor: arjan <arjan@archlinux.org>
pkgname=libusb
pkgver=0.1.12
2010-04-04 22:20:41 +08:00
pkgrel=4
2010-03-13 23:25:19 +08:00
pkgdesc="Library to enable user space application programs to communicate with USB devices"
arch=('i686' 'x86_64')
groups=('base')
depends=('gcc-libs' 'sh')
url="http://libusb.sourceforge.net/"
license=('LGPL')
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('caf182cbc7565dac0fd72155919672e6')
options=('!libtool')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --disable-build-docs
make || return 1
make DESTDIR=$pkgdir install
}