mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
668 B
Bash
22 lines
668 B
Bash
# $Id: PKGBUILD 8698 2008-08-16 03:34:22Z eric $
|
|
# Maintainer: arjan <arjan@archlinux.org>
|
|
# arm Maintainer: Philipp Scholl <pscholl@bawue.de>
|
|
pkgname=libusb
|
|
pkgver=0.1.12
|
|
pkgrel=3
|
|
depends=('gcc-libs')
|
|
pkgdesc="Library to enable user space application programs to communicate with USB devices"
|
|
arch=(arm)
|
|
url="http://libusb.sourceforge.net/"
|
|
license=('LGPL')
|
|
groups=('base')
|
|
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('caf182cbc7565dac0fd72155919672e6')
|
|
options=(!libtool)
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr --disable-build-docs
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|