pantry/projects/github.com/PJK/libcbor/package.yml
Max Howell 81e7a5e16f
pkgx
2023-10-01 14:44:42 -04:00

39 lines
885 B
YAML

distributable:
url: https://github.com/PJK/libcbor/archive/refs/tags/v{{ version }}.tar.gz
strip-components: 1
versions:
github: PJK/libcbor
strip: /^v/
build:
dependencies:
cmake.org: 3
working-directory: build
script: |
cmake .. $ARGS
make --jobs {{ hw.concurrency }}
make install
env:
ARGS:
- -DCMAKE_BUILD_TYPE=Release
- -DCMAKE_INSTALL_PREFIX="{{prefix}}"
- -DWITH_EXAMPLES=OFF
- -DBUILD_SHARED_LIBS=ON
test:
dependencies:
fixture: |
#include "cbor.h"
#include <stdio.h>
int main(int argc, char * argv[])
{
printf("Hello from libcbor %s\n", CBOR_VERSION);
printf("Pretty-printer support: %s\n", CBOR_PRETTY_PRINTER ? "yes" : "no");
printf("Buffer growth factor: %f\n", (float) CBOR_BUFFER_GROWTH);
}
script: |
mv $FIXTURE test.c
cc -o test test.c -lcbor
./test