# 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.1 release=1 source=(https://downloads.sourceforge.net/$name/$name-$version.tar.gz) build() { cd $name-$version install -d build cd build cmake .. \ -DCMAKE_INSTALL_PREFIX=/usr \ -DCMAKE_INSTALL_LIBDIR=lib \ -DCMAKE_BUILD_TYPE=Release make make DESTDIR=$PKG install ln -s glut.pc $PKG/usr/lib/pkgconfig/freeglut.pc }