mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
new file: projects/freedesktop.org/mesa-glu/package.yml
new file: projects/freedesktop.org/mesa-glu/test.cpp
This commit is contained in:
parent
36d91ca956
commit
0b7ac384ca
2 changed files with 54 additions and 0 deletions
36
projects/freedesktop.org/mesa-glu/package.yml
Normal file
36
projects/freedesktop.org/mesa-glu/package.yml
Normal 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
|
18
projects/freedesktop.org/mesa-glu/test.cpp
Normal file
18
projects/freedesktop.org/mesa-glu/test.cpp
Normal 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;
|
||||||
|
}
|
Loading…
Reference in a new issue