mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:57:14 +08:00
30 lines
661 B
Bash
30 lines
661 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas[at]chakra-project[dot]org>
|
|
# contributor: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
pkgname=libgusb
|
|
pkgver=0.1.3
|
|
pkgrel=1
|
|
pkgdesc="GLib wrapper around libusb1"
|
|
arch=('x86_64')
|
|
url="https://gitorious.org/gusb/"
|
|
license=('LGPL2.1')
|
|
depends=('udev')
|
|
source=(http://people.freedesktop.org/~hughsient/releases/$pkgname-$pkgver.tar.xz)
|
|
options=('!libtool')
|
|
sha1sums=('6fc81a3b1aad42bc8041c9c9c26a029df57c2870')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|