opt/freeglut/Pkgfile
2019-11-02 19:28:52 +11:00

27 lines
562 B
Plaintext

# 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
}