|
root / devel / bison
bison Plain Text 37 lines 678 B
 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
27
28
29
30
31
32
33
34
35
36
#!/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 <chris.tusa@leafscale.com>"
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