core/libgusb/PKGBUILD

29 lines
664 B
Bash
Raw Normal View History

2012-10-29 10:31:26 +08:00
#
# Platform Packages for Chakra, part of chakra-project.org
#
# maintainer almack[at]chakra-project[dot]org>
2012-10-29 10:31:26 +08:00
pkgname=libgusb
2015-07-10 04:46:34 +08:00
pkgver=0.2.6
pkgrel=1
2012-10-29 10:31:26 +08:00
pkgdesc="GLib wrapper around libusb1"
arch=('x86_64')
2015-07-10 04:46:34 +08:00
url="https://github.com/hughsie/libgusb"
2012-10-29 10:31:26 +08:00
license=('LGPL2.1')
2015-07-10 04:46:34 +08:00
depends=('libgudev' 'libusbx')
makedepends=('gobject-introspection' 'python2')
2012-10-29 10:31:26 +08:00
source=(http://people.freedesktop.org/~hughsient/releases/$pkgname-$pkgver.tar.xz)
2015-07-10 04:46:34 +08:00
sha256sums=('6f638bdbc4e77643c0a198a300e50b592ad326e56bddf359de15e04689209c06')
2012-10-29 10:31:26 +08:00
build() {
2015-07-10 04:46:34 +08:00
cd $pkgname-$pkgver
2012-10-29 10:31:26 +08:00
./configure --prefix=/usr --disable-static
make
}
package() {
2015-07-10 04:46:34 +08:00
cd $pkgname-$pkgver
2012-10-29 10:31:26 +08:00
make DESTDIR="$pkgdir" install
}