mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
27 lines
552 B
YAML
27 lines
552 B
YAML
distributable:
|
|
url: https://github.com/westes/flex/releases/download/v2.6.4/flex-2.6.4.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: westes/flex
|
|
strip: /^flex /
|
|
|
|
build:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
tea.xyz/gx/make: '*'
|
|
gnu.org/m4: 1
|
|
script: |
|
|
./configure --prefix={{ prefix }}
|
|
make --jobs {{ hw.concurrency }} install
|
|
|
|
test:
|
|
dependencies:
|
|
tea.xyz/gx/cc: c99
|
|
script: |
|
|
flex {{ pkg.pantry-prefix }}/test.flex
|
|
cc lex.yy.c -lfl
|
|
OUT=$(echo "Hello World" | ./a.out)
|
|
test "$OUT" = "Hello
|
|
World"
|