#!/bin/bash # Build script for bison set -e cd "$SRCDIR" ./configure \ --prefix=$PREFIX \ --libdir=$PREFIX/lib \ --disable-nls gmake -j${JOBS:-1} gmake install DESTDIR="$PKGDIR" [package] name = "bison" version = "3.8.2" release = 1 description = "GNU parser generator" url = "https://www.gnu.org/software/bison/" license = "GPL-3.0-or-later" maintainer = "Chris Tusa " arch = "x86_64" [dependencies] runtime = [] build = [] [[source]] file = "bison-3.8.2.tar.xz" urls = [ "https://ftpmirror.gnu.org/bison/bison-3.8.2.tar.xz" ] checksum = "9bba0214ccf7f1079c5d59210045227bcf619519840ebfa80cd3849cff5a5bf2" [build] parallel = true