summaryrefslogtreecommitdiff
path: root/repo/devel/flex.xibuild
blob: 37c90094d5501397803a3c52e0a7175cb23f6b26 (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
#!/bin/sh

MAKEDEPS="make help2man"
DEPS="glibc m4 sh libiconv"

PKG_VER=2.6.4
SOURCE=https://github.com/westes/flex/releases/download/v$PKG_VER/flex-$PKG_VER.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
}

check () {
    make check
}

package () {
    make DESTDIR=$PKG_DEST install
    ln -sv flex $PKG_DEST/usr/bin/lex
}