summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 85b86135615a1ff7928f53bc99d05514c63b8404 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Maintainer: Adrian Perez de Castro <aperez@igalia.com>
# Maintainer: Zachary Lund <admin@computerquip.com>

pkgname=llnextgen
pkgver=0.5.5
pkgrel=2
pkgdesc="The spirtual successor of Jacobs and Grune's parser generator."
arch=('i686' 'x86_64')
url=https://os.ghalkes.nl/LLnextgen/download.html
license=('GPL3')
depends=(glibc)
source=("http://os.ghalkes.nl/LLnextgen/releases/LLnextgen-$pkgver.tgz")
md5sums=('f3733cca58f862d41b8fb3d9e20b8426')

build() {
  cd "$srcdir/LLnextgen-$pkgver"

  ./configure --prefix=/usr
  make
}

package() {
  cd "$srcdir/LLnextgen-$pkgver"

  make prefix="$pkgdir/usr/" install
}