summaryrefslogtreecommitdiff
path: root/repo/devel/flex.xibuild
blob: f5291cc10629fb40926590738b4976f9d5aa3f42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

DEPS=(glibc m4 sh)

SOURCE=https://github.com/westes/flex/releases/download/v2.6.4/flex-2.6.4.tar.gz
DESC="a utility for generating programs that recognize patterns in text"

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

package () {
    ln -v /usr/bin/flex $PKG_DEST/usr/bin/lex
}