mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
28 lines
529 B
YAML
28 lines
529 B
YAML
|
distributable:
|
||
|
url: https://github.com/danfis/libccd/archive/v{{version.marketing}}.tar.gz
|
||
|
strip-components: 1
|
||
|
|
||
|
versions:
|
||
|
github: danfis/libccd/tags
|
||
|
stripe: ^v
|
||
|
|
||
|
build:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
tea.xyz/gx/make: '*'
|
||
|
cmake.org: '*'
|
||
|
script: |
|
||
|
cmake . $ARGS
|
||
|
make --jobs {{ hw.concurrency }} install
|
||
|
|
||
|
env:
|
||
|
ARGS:
|
||
|
- -DCMAKE_INSTALL_PREFIX="{{prefix}}"
|
||
|
- -DENABLE_DOUBLE_PRECISION=ON
|
||
|
|
||
|
test:
|
||
|
dependencies:
|
||
|
tea.xyz/gx/cc: c99
|
||
|
script: |
|
||
|
cc -o test test.c -lccd
|
||
|
./test
|