updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / xkbset / PKGBUILD
blob77cbb50f9d6360b9b20304df367904f041a8ea4a
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>
7 pkgname=xkbset
8 pkgver=0.5
9 pkgrel=1
10 pkgdesc="Set accessx features in X, such as sticky keys."
11 arch=(i686)
12 url="http://www.math.missouri.edu/~stephen/software/"
13 license=('Other free license')
14 groups=()
15 depends=()
16 makedepends=()
17 optdepends=()
18 provides=()
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 source=(http://www.math.missouri.edu/~stephen/software/xkbset/$pkgname-$pkgver.tar.gz)
24 noextract=()
25 md5sums=('282c416a76a237fa84a7b513c9d7b2cf')
28 build() {
29   cd "$srcdir/$pkgname-$pkgver"
30   mkdir -p $pkgdir/usr/bin
31   mkdir -p $pkgdir/usr/share/man/man1
33   make || return 1
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: