mirror of
https://github.com/ivabus/pantry
synced 2024-11-14 04:25:08 +03:00
23 lines
414 B
YAML
23 lines
414 B
YAML
|
distributable:
|
||
|
url: http://pyyaml.org/download/libyaml/yaml-{{version}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: yaml/libyaml/tags
|
||
|
# strip: /^v/
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
tea.xyz/gx/make: '*'
|
||
|
script: |
|
||
|
./configure --prefix="{{prefix}}"
|
||
|
make --jobs {{hw.concurrency}} install
|
||
|
|
||
|
test:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
script: |
|
||
|
cc test.c -lyaml
|
||
|
./a.out
|