* new file:   projects/glfw.org/package.yml
	new file:   projects/glfw.org/test.c

* wip

* -fPIC -pie

* test section: -fPIC -pie

* .

* comment

---------

Co-authored-by: Jacob Heider <jacob@pkgx.dev>
This commit is contained in:
Andrew 2024-01-21 13:59:19 +02:00 committed by GitHub
parent 88315c364a
commit 7725ed7fb7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,37 @@
distributable:
url: git+https://github.com/glfw/glfw.git
ref: ${{version.tag}}
versions:
github: glfw/glfw
dependencies:
linux:
freeglut.sourceforge.io: ^3.4
x.org/xcursor: ^1.2
mesa3d.org: ^23.3
build:
dependencies:
cmake.org: '*'
script:
- cmake $ARGS .
- make --jobs {{hw.concurrency}} install
env:
ARGS:
- -DCMAKE_INSTALL_PREFIX={{prefix}}
- -DCMAKE_INSTALL_LIBDIR=lib
- -DCMAKE_BUILD_TYPE=Release
- -DCMAKE_FIND_FRAMEWORK=LAST
- -DCMAKE_VERBOSE_MAKEFILE=ON
- -Wno-dev
- -DBUILD_TESTING=OFF
- -DGLFW_USE_CHDIR=TRUE
- -DGLFW_USE_MENUBAR=TRUE
- -DBUILD_SHARED_LIBS=TRUE
test:
- cc test.c $CFLAGS -lglfw -o test
# FIXME: we should get a test that runs on linux as well
- run: ./test
if: darwin

10
projects/glfw.org/test.c Normal file
View file

@ -0,0 +1,10 @@
#define GLFW_INCLUDE_GLU
#include <GLFW/glfw3.h>
#include <stdlib.h>
int main()
{
if (!glfwInit())
exit(EXIT_FAILURE);
glfwTerminate();
return 0;
}