summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMárcio Alexandre Silva Delgado <coadde@adinet.com.uy>2012-08-01 23:09:42 -0300
committerMárcio Alexandre Silva Delgado <coadde@adinet.com.uy>2012-08-01 23:09:42 -0300
commita6b4f8350ea59c2080da61b453fd065f82b673ab (patch)
tree35b9d878666d921b22f7edd4e2077907e3b50dde
parentb222f3a3e4349adfb53c5e58376395d9d527e4ea (diff)
downloadabslibre-a6b4f8350ea59c2080da61b453fd065f82b673ab.tar.gz
abslibre-a6b4f8350ea59c2080da61b453fd065f82b673ab.tar.bz2
abslibre-a6b4f8350ea59c2080da61b453fd065f82b673ab.zip
luxblend25: adding package to repo
-rw-r--r--libre/luxblend25/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/libre/luxblend25/PKGBUILD b/libre/luxblend25/PKGBUILD
new file mode 100644
index 000000000..d9934e179
--- /dev/null
+++ b/libre/luxblend25/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com>
+# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com>
+pkgname=luxblend25
+pkgver=1.0rc3
+_pkgver=2d621c653196
+_blender=2.63
+pkgrel=1
+pkgdesc="A LuxRender exporter for Blender-libre"
+arch=('any')
+url="http://www.luxrender.net/"
+license=('GPL')
+depends=('blender' 'luxrender')
+replaces=('luxblend25')
+conflicts=('luxblend25')
+provides=("luxblend25=$pkgver")
+source=(https://bitbucket.org/luxrender/luxblend25/get/$_pkgver.tar.bz2)
+md5sums=('c5719c2a0e8567cd9f0aef429a2996f0')
+
+package() {
+ install -d -m755 "$pkgdir"/usr/share/blender/$_blender/scripts/addons
+ cp -a "$srcdir"/luxrender-luxblend25-$_pkgver/src/luxrender \
+ "$pkgdir"/usr/share/blender/$_blender/scripts/addons
+ # change the search path in exporter so it finds pylux in its new location
+ sed -i 's|from.*import pylux|import pylux|' "$pkgdir/usr/share/blender/$_blender/scripts/addons/luxrender/outputs/pure_api.py"
+}
+
+# vim:set ts=2 sw=2 et: