mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
21 lines
410 B
YAML
21 lines
410 B
YAML
distributable:
|
|
url: https://github.com/yaml/libyaml/releases/download/{{version}}/yaml-{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: yaml/libyaml
|
|
|
|
build:
|
|
dependencies:
|
|
gnu.org/libtool: '*'
|
|
gnu.org/autoconf: '*'
|
|
script: |
|
|
./configure $ARGS
|
|
make --jobs {{ hw.concurrency }} install
|
|
env:
|
|
ARGS:
|
|
- --prefix="{{prefix}}"
|
|
|
|
test:
|
|
script: cc fixture.c -lyaml -o test
|