summaryrefslogtreecommitdiff
path: root/repo/core/bison.xibuild
blob: 556bf16603ffa9927433b8e005fa96f2d7ff01bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

DEPS=(glibc m4 sh)

SOURCE=https://ftp.gnu.org/gnu/bison/bison-3.8.1.tar.xz
DESC="The GNU general-purpose parser generator"

build () {
    ./configure --prefix=/usr --docdir=/usr/share/doc/bison-3.8.1
    make
    make check 
    make DESTDIR=$PKG_DEST install 
}