summaryrefslogtreecommitdiff
path: root/repo/devel/flex/flex.xibuild
blob: abf55f492c2022edc7793c1ed5985d87a7d54b37 (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="musl m4 sh"

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 -s flex $PKG_DEST/usr/bin/lex
}