updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / uhidled / PKGBUILD
blobf3721f6dd0e464fa91b0eb15836afa43c93b17fb
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: NiteHogg <keith.b.elliott [at] gmail [dot] com>
7 pkgname=uhidled
8 pkgver=0.1.1
9 pkgrel=1
10 pkgdesc="Tool for controlling LED's attached to U-Hid device (i.e. Pac-Drive)."
11 arch=('any')
12 url="http://www.ultimarc.com"
13 license=('GPL')
14 depends=('libusb' 'libhid' 'glibc')
15 install=uhidled.install
16 changelog=ChangeLog
17 source=("http://www.ultimarc.com/$pkgname-$pkgver.tar.gz")
18 md5sums=('5a19da5fa1aabb1db93b41e5b0c39fa1')
20 build() {
22   cd "$srcdir/$pkgname-$pkgver"
23   ./configure --prefix=/usr
24   make
27 check() {
29   cd "$srcdir/$pkgname-$pkgver"
30   make -k check
33 package() {
35   cd "$srcdir/$pkgname-$pkgver"
36   make DESTDIR="$pkgdir/" install
39 # vim:set ts=2 sw=2 et: