pantry/projects/khronos.org/opencl-headers/package.yml

35 lines
667 B
YAML
Raw Normal View History

distributable:
url: https://github.com/KhronosGroup/OpenCL-Headers/archive/refs/tags/v{{version.raw}}.tar.gz
strip-components: 1
versions:
github: KhronosGroup/OpenCL-Headers
strip: /^v/
build:
dependencies:
tea.xyz/gx/cc: c99
gnu.org/make: '*'
cmake.org: '*'
python.org: ^3.11
script:
- cmake -S . -B build $ARGS
- cmake --build build
- cmake --install build
env:
ARGS:
- -DCMAKE_INSTALL_PREFIX={{prefix}}
test:
dependencies:
tea.xyz/gx/cc: c99
fixture: |
#include <stdio.h>
#include <CL/opencl.h>
int main(void) {
return 0;
}
script: |
mv $FIXTURE b.c
cc b.c
./a.out