new file: projects/freedesktop.org/mesa-glu/package.yml

new file:   projects/freedesktop.org/mesa-glu/test.cpp
This commit is contained in:
andrejrabcenko 2023-09-10 23:31:42 +03:00 committed by Jacob Heider
parent 36d91ca956
commit 0b7ac384ca
2 changed files with 54 additions and 0 deletions

View file

@ -0,0 +1,36 @@
distributable:
url: https://gitlab.freedesktop.org/mesa/glu/-/archive/glu-{{version}}/glu-glu-{{version}}.tar.gz
strip-components: 1
versions:
url: https://gitlab.freedesktop.org/mesa/glu/-/tags
match: /glu-\d+\.\d+\.\d+/
strip:
- /^glu-/
dependencies:
mesa3d.org: '*'
build:
dependencies:
tea.xyz/gx/cc: c99
gnu.org/make: '*'
freedesktop.org/pkg-config: '*'
mesonbuild.com: '*'
ninja-build.org: '*'
script:
- meson setup $MESON_ARGS build
- meson compile -C build --verbose
- meson install -C build
env:
MESON_ARGS:
- --prefix="{{prefix}}"
- --libdir="{{prefix}}/lib"
- --buildtype=release
- --wrap-mode=nofallback
- -Dgl_provider=gl
test:
dependencies:
tea.xyz/gx/cc: c99
freedesktop.org/pkg-config: '*'
script:
- pkg-config --modversion glu | grep {{version}}
- c++ test.cpp -lGLU -o test
- ./test

View file

@ -0,0 +1,18 @@
#include <GL/glu.h>
int main(int argc, char* argv[]) {
static GLUtriangulatorObj *tobj;
GLdouble vertex[3], dx, dy, len;
int i = 0;
int count = 5;
tobj = gluNewTess();
gluBeginPolygon(tobj);
for (i = 0; i < count; i++) {
vertex[0] = 1;
vertex[1] = 2;
vertex[2] = 0;
gluTessVertex(tobj, vertex, 0);
}
gluEndPolygon(tobj);
return 0;
}