mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 18:45:19 +03:00
35 lines
667 B
YAML
35 lines
667 B
YAML
|
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
|