|
root / devel / flex / build.sh
build.sh Bash 14 lines 192 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#!/bin/bash
# Build script for flex

set -e
cd "$SRCDIR"

./configure \
    --prefix=$PREFIX \
    --libdir=$PREFIX/lib \
    --disable-nls

gmake -j${JOBS:-1}
gmake install DESTDIR="$PKGDIR"