pantry/projects/cmocka.org/package.yml
Max Howell 81e7a5e16f
pkgx
2023-10-01 14:44:42 -04:00

38 lines
808 B
YAML

distributable:
url: https://cmocka.org/files/{{version.marketing}}/cmocka-{{version}}.tar.xz
strip-components: 1
versions:
gitlab: cmocka/cmocka/tags
strip:
- /^cmocka-/
build:
dependencies:
cmake.org: '*'
working-directory: build
script:
- cmake .. $ARGS
- make --jobs {{ hw.concurrency }}
- make --jobs {{ hw.concurrency }} install
env:
ARGS:
- -DCMAKE_INSTALL_PREFIX={{prefix}}
- -DCMAKE_BUILD_TYPE=Release
- -DCMAKE_VERBOSE_MAKEFILE=ON
- -Wno-dev
- -DBUILD_TESTING=OFF
- -DWITH_STATIC_LIB=ON
- -DWITH_CMOCKERY_SUPPORT=ON
- -DUNIT_TESTING=ON
test:
dependencies:
freedesktop.org/pkg-config: '*'
script:
- pkg-config --modversion cmocka | grep {{version}}
- cc test.c -lcmocka -o test
- ./test