summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorbartus2017-08-22 12:33:29 +0200
committerbartus2017-08-22 12:33:29 +0200
commitdde12dbabfc645a236855328bcd45dab9a0b38f6 (patch)
tree3612482cb3982708160c02d5a51c7f1dcb4f3118
parent91c7c11d11cf370232b6906f94f668912bbd952e (diff)
downloadaur-dde12dbabfc645a236855328bcd45dab9a0b38f6.tar.gz
fix install invocation
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD6
2 files changed, 5 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3ee9d722cc31..f5acafc8b484 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = blender-plugin-animation-nodes
pkgdesc = Node based visual scripting system designed for motion graphics in Blender.
pkgver = 2.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/JacquesLucke/animation_nodes
+ arch = i686
arch = x86_64
license = GPL
makedepends = cython
diff --git a/PKGBUILD b/PKGBUILD
index 28065b4ced77..942dd7256c5c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,9 +2,9 @@
pkgname=blender-plugin-animation-nodes
name=animation_nodes
pkgver=2.0
-pkgrel=1
+pkgrel=2
pkgdesc="Node based visual scripting system designed for motion graphics in Blender."
-arch=('x86_64')
+arch=(i686 x86_64)
url="https://github.com/JacquesLucke/animation_nodes"
license=('GPL')
depends=(blender python-numpy)
@@ -22,7 +22,7 @@ build() {
package() {
cd ${srcdir}
addons="$pkgdir/usr/share/blender/$(blender -v | head -n1 | cut -f2 -d ' ')/scripts/addons"
- install -d 755 ${addons}/${name}
+ install -dm755 ${addons}/${name}
cp -a -t ${addons}/${name} ${name}-${pkgver}/${name}/*
}