# Description: A free alternative to the OpenGL Utility Toolkit (GLUT) library. # URL: http://freeglut.sourceforge.net/ # Maintainer: Danny Rawlins, crux at romster dot me # Depends on: glu xorg-libxi name=freeglut version=3.2.2 release=1 source=(https://downloads.sourceforge.net/$name/$name-$version.tar.gz) build() { cmake -S$name-$version -Bbuild -GNinja \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_BUILD_TYPE=Release cmake --build build DESTDIR=$PKG cmake --install build ln -s glut.pc $PKG/usr/lib/pkgconfig/freeglut.pc }