#Packager: Maximus (maximuus[at]gmail[dot])

pkgname=OpenSceneGraph
pkgver=2.9.7
pkgrel=2mb
source=(http://www.openscenegraph.org/downloads/developer_releases/$pkgname-$pkgver.zip)
sourcetemplate=http://people.salixos.org/maximus/$pkgname/$pkgver/
docs=("readme" "changelog" "authors" "news" "license")
url=http://www.openscenegraph.org/

slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"OpenSceneGraph (3D graphics toolkit)"
"The OpenSceneGraph is an open source cross platform graphics toolkit"
"for the development of high performance graphics applications such as"
"flight simulators, games, virtual reality and scientific"
"visualization. Based around the concept of a scene graph, it provides"
"an object oriented framework on top of OpenGL freeing the developer"
"from implementing and optimizing low level graphics calls, and"
"provides many additional utilities for rapid development of graphics"
"applications."
)


build() {
	
	cd $startdir/src/$pkgname-$pkgver
	
	cmake . -DCMAKE_CXX_FLAGS=-D__STDC_CONSTANT_MACROS -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr

	make -j $numjobs || return 1
	make install DESTDIR=$startdir/pkg

}