mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
27 lines
562 B
YAML
27 lines
562 B
YAML
distributable:
|
|
url: https://github.com/open-source-parsers/jsoncpp/archive/{{version}}.tar.gz
|
|
strip-components: 1
|
|
|
|
versions:
|
|
github: open-source-parsers/jsoncpp
|
|
|
|
build:
|
|
dependencies:
|
|
mesonbuild.com: '*'
|
|
ninja-build.org: '*'
|
|
script: |
|
|
meson setup build $ARGS
|
|
meson compile -C build --verbose
|
|
meson install -C build
|
|
env:
|
|
ARGS:
|
|
- --prefix="{{prefix}}"
|
|
- --libdir="{{prefix}}/lib"
|
|
- --buildtype=release
|
|
- --wrap-mode=nofallback
|
|
|
|
test:
|
|
script: |
|
|
g++ -std=c++11 ./test.cpp -o test -ljsoncpp
|
|
./test
|