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>
10 pkgdesc="Tool for controlling LED's attached to U-Hid device (i.e. Pac-Drive)."
12 url="http://www.ultimarc.com"
14 depends=('libusb' 'libhid' 'glibc')
15 install=uhidled.install
17 source=("http://www.ultimarc.com/$pkgname-$pkgver.tar.gz")
18 md5sums=('5a19da5fa1aabb1db93b41e5b0c39fa1')
22 cd "$srcdir/$pkgname-$pkgver"
23 ./configure --prefix=/usr
29 cd "$srcdir/$pkgname-$pkgver"
35 cd "$srcdir/$pkgname-$pkgver"
36 make DESTDIR="$pkgdir/" install
39 # vim:set ts=2 sw=2 et: