diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-02-20 13:29:10 -0200 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-02-20 13:29:10 -0200 |
commit | e45c9381b6451742347a708ed9b43e9bc8bf4f25 (patch) | |
tree | d11282fbb655daf774c28f4b003dc253d2c7bc13 /artistic/luxrender-nocl/PKGBUILD | |
parent | c3541e8cf824da0ba9f096122abb703c3b9ca748 (diff) | |
download | abslibre-e45c9381b6451742347a708ed9b43e9bc8bf4f25.tar.gz abslibre-e45c9381b6451742347a708ed9b43e9bc8bf4f25.tar.bz2 abslibre-e45c9381b6451742347a708ed9b43e9bc8bf4f25.zip |
drop useless luxrays and luxrender PKGBUILDs
* drop luxrays-art PKGBUILD
* drop luxrays-nocl PKGBUILD
* drop luxrender-art PKGBUILD and boost_1.50_fix.diff
* drop luxrender-nocl PKGBUILD and boost_1.50_fix.diff
Diffstat (limited to 'artistic/luxrender-nocl/PKGBUILD')
-rw-r--r-- | artistic/luxrender-nocl/PKGBUILD | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/artistic/luxrender-nocl/PKGBUILD b/artistic/luxrender-nocl/PKGBUILD deleted file mode 100644 index 9daa7a548..000000000 --- a/artistic/luxrender-nocl/PKGBUILD +++ /dev/null @@ -1,78 +0,0 @@ -# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com> -# Initial contributor: flixie <69one@gmx.net> -# Contributor: Imanol Celaya <ornitorrincos@archlinux-es.org> -# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com> -pkgname=luxrender-nocl -pkgver=1.0rc4 -_pkgver=0b4c3e188707 -pkgrel=1 -pkgdesc='Rendering system for physically correct, unbiased image synthesis (without OpenCL)' -arch=( - i686 - x86_64 - mips64el -) -url=http://www.${pkgname%-nocl}.net/ -license=( - GPL -) -depends=( - boost-libs - freeimage - openexr -) -optdepends=( - 'luxblend25: Blender exporter' - 'python: Python interface (pylux)' - 'qt: Qt GUI' -) -makedepends=( - cmake - boost - qt - ${pkgname::3}rays-nocl=$pkgver - python -) -conflicts=( - ${pkgname%-nocl} -) -provides=( - ${pkgname%-nocl}=$pkgver -) -source=( - https://bitbucket.org/${pkgname%-nocl}/${pkgname::3}/get/$_pkgver.tar.bz2 - boost_1.50_fix.diff -) -md5sums=( - 54ff625a7833541c3cff5f0a77a93863 - 8c7774bb0c97aadd77d9e665d8fa4aab -) - -build() { - cd $srcdir/${pkgname%-nocl}-${pkgname::3}-$_pkgver - - # fix for boost 1.50 - # the boost::TIME_UTC has been renamed due to the conflict with C++11 - patch -Np1 < $srcdir/boost_1.50_fix.diff || true - - export CXXFLAGS='$CXXFLAGS -lpthread' - cmake -DCMAKE_INSTALL_PREFIX=/usr \ - -DLUXRAYS_DISABLE_OPENCL=ON \ - -DPYTHON_CUSTOM=ON \ - -DPYTHON_LIBRARIES=/usr/lib/libpython3.2mu.so \ - -DPYTHON_INCLUDE_PATH=/usr/include/python3.2mu \ - . - make -} - -package() { - cd $srcdir/${pkgname%-nocl}-${pkgname::3}-$_pkgver - make DESTDIR=$pkgdir install - - # fix library path on x86_64 - [ $CARCH = x86_64 ] && mv $pkgdir/usr/lib64 $pkgdir/usr/lib - - #install pylux - install -D -m644 pylux.so $pkgdir/usr/lib/python3.2/pylux.so -} - |