New package: luxrays-3.0

This commit is contained in:
Andrea Brancaleoni 2015-06-23 03:44:10 +02:00
parent efc0135469
commit 4a4c354486
2 changed files with 44 additions and 0 deletions

1
srcpkgs/luxrays-devel Symbolic link
View File

@ -0,0 +1 @@
luxrays/

43
srcpkgs/luxrays/template Normal file
View File

@ -0,0 +1,43 @@
# Template file for 'luxrays'
pkgname=luxrays
version=3.0
revision=1
build_style=cmake
hostmakedepends="cmake flex bison boost-python"
makedepends="openimageio-devel tiff-devel libpng-devel libgomp-devel boost-devel glew-devel opencl-headers libopenexr-devel python-devel libfreeglut-devel embree-devel"
short_desc="LuxMark renderer engine"
maintainer="Andrea Brancaleoni <miwaxe@gmail.com>"
license="GPL-3"
homepage="http://www.luxrender.net/wiki/LuxRays"
distfiles="https://bitbucket.org/luxrender/luxrays/get/luxmark_v$version.tar.gz"
checksum=fb63fc5d21cf43271f657c2ccc176116119afa639d83dbd70b50de69ce26fc62
configure_args=" -DLUXRAYS_DISABLE_OPENCL=OFF -DCMAKE_SKIP_RPATH=ON"
post_extract() {
mv $XBPS_BUILDDIR/luxrender-luxrays* $wrksrc
}
do_install() {
for B in build/bin/*; do
vbin $B
done
for L in build/lib/*; do
vinstall $L 644 usr/lib
done
vmkdir usr/include
vcopy include/* usr/include
vmkdir usr/lib/python2.7
mv ${DESTDIR}/usr/lib/pyluxcore.so ${DESTDIR}/usr/lib/python2.7
}
luxrays-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
}
}