mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 19:37:13 +08:00
21 lines
609 B
Bash
21 lines
609 B
Bash
# $Id: PKGBUILD 79849 2010-05-08 12:19:42Z jgc $
|
|
# Maintainer: Jan de Groot <jgc@archlinux.org>
|
|
pkgname=libusb1
|
|
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)
|
|
md5sums=('37d34e6eaa69a4b645a19ff4ca63ceef')
|
|
|
|
build() {
|
|
cd "${srcdir}/libusb-${pkgver}"
|
|
./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|