mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 08:07:15 +08:00
25 lines
678 B
Bash
25 lines
678 B
Bash
# $Id: PKGBUILD 79849 2010-05-08 12:19:42Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
pkgname=libusb-compat
|
|
pkgver=0.1.3
|
|
pkgrel=1
|
|
depends=('libusb' 'sh')
|
|
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-compat-0.1/$pkgname-$pkgver/${pkgname}-${pkgver}.tar.bz2)
|
|
options=('!libtool')
|
|
md5sums=('570ac2ea085b80d1f74ddc7c6a93c0eb')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
make DESTDIR=${pkgdir} install
|
|
}
|