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 # Contributor: Bill Powell <bill@billpowellisalive.com>
10 pkgdesc="Set accessx features in X, such as sticky keys."
12 url="http://www.math.missouri.edu/~stephen/software/"
13 license=('Other free license')
23 source=(http://www.math.missouri.edu/~stephen/software/xkbset/$pkgname-$pkgver.tar.gz)
25 md5sums=('282c416a76a237fa84a7b513c9d7b2cf')
29 cd "$srcdir/$pkgname-$pkgver"
30 mkdir -p $pkgdir/usr/bin
31 mkdir -p $pkgdir/usr/share/man/man1
34 make DESTDIR="$pkgdir/" INSTALL_BIN="$pkgdir/usr/bin" INSTALL_MAN1="$pkgdir/usr/share/man/man1" install
37 # vim:set ts=2 sw=2 et: