mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 06:34:37 +08:00
29 lines
637 B
Bash
29 lines
637 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer almack[at]chakra-project[dot]org>
|
|
|
|
pkgname=libgusb
|
|
pkgver=0.1.6
|
|
pkgrel=1
|
|
pkgdesc="GLib wrapper around libusb1"
|
|
arch=('x86_64')
|
|
url="https://gitorious.org/gusb/"
|
|
license=('LGPL2.1')
|
|
depends=('udev' 'libusbx')
|
|
makedepends=('gobject-introspection')
|
|
source=(http://people.freedesktop.org/~hughsient/releases/$pkgname-$pkgver.tar.xz)
|
|
sha1sums=('ecd6d1254d456f2046ce6110607b1e2c7921c377')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|