mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
29 lines
770 B
YAML
29 lines
770 B
YAML
|
distributable:
|
||
|
url: https://download.savannah.nongnu.org/releases/libpipeline/libpipeline-{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
display-name: libpipeline
|
||
|
versions:
|
||
|
url: https://download.savannah.nongnu.org/releases/libpipeline/
|
||
|
match: /libpipeline-\d+\.\d+\.\d+\.tar\.gz/
|
||
|
strip:
|
||
|
- /^libpipeline-/
|
||
|
- /\.tar\.gz/
|
||
|
build:
|
||
|
dependencies:
|
||
|
gnu.org/make: '*'
|
||
|
script:
|
||
|
- ./configure $CONFIGURE_ARGS
|
||
|
- make --jobs {{hw.concurrency}}
|
||
|
- make --jobs {{hw.concurrency}} install
|
||
|
env:
|
||
|
CONFIGURE_ARGS:
|
||
|
- --disable-debug
|
||
|
- --disable-dependency-tracking
|
||
|
- --prefix="{{prefix}}"
|
||
|
- --libdir="{{prefix}}/lib"
|
||
|
- --disable-silent-rules
|
||
|
test:
|
||
|
script:
|
||
|
- cc test.c -lpipeline -o test
|
||
|
- ./test | grep "Hello world"
|