updated on Thu Jan 12 08:01:00 UTC 2012
[aur-mirror.git] / kelbt / PKGBUILD
blob683e9aaa5235887f9693064684cea56682cc6a11
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: Your Name <youremail@domain.com>
7 pkgname=kelbt
8 pkgver=0.14
9 pkgrel=2
10 pkgdesc="Kelbt - backtracking LALR(1) parsers generator"
11 arch=('i686' 'x86_64')
12 url="http://www.complang.org/kelbt"
13 license=('GPL')
14 depends=()
15 source=("http://www.complang.org/kelbt/$pkgname-$pkgver.tar.gz")
16 md5sums=('6eeaaa79e665389d7953361d10815fb5')
18 build() {
19   cd "$srcdir/$pkgname-$pkgver"
21   ./configure --prefix=/usr
22   make
25 package() {
26   cd "$srcdir/$pkgname-$pkgver/kelbt"
27   install -d "$pkgdir/usr/bin"
28   install -s kelbt "$pkgdir/usr/bin/kelbt"
31 # vim:set ts=2 sw=2 et: