|
root / devel / flex
flex Plain Text 37 lines 700 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/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"
[package]
name = "flex"
version = "2.6.4"
release = 1
description = "Fast lexical analyzer generator"
url = "https://github.com/westes/flex"
license = "BSD-2-Clause"
maintainer = "Chris Tusa <chris.tusa@leafscale.com>"
arch = "x86_64"

[dependencies]
runtime = []
build = []

[[source]]
file = "flex-2.6.4.tar.gz"
urls = [
    "https://github.com/westes/flex/releases/download/v2.6.4/flex-2.6.4.tar.gz"
]
checksum = "e87aae032bf07c26f85ac0ed3250998c37621d95f8bd748b31f15b33c45ee995"

[build]
parallel = true