blob: 15669141e4d1f628e478155771360e06ded896c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: doakey3 <doakey3@gmail.com>
pkgname=blender-plugin-bligify
pkgver=1.3.5
pkgrel=1
pkgdesc="Export and import animated GIFs from the Blender VSE"
url="https://github.com/doakey3/Bligify"
license=("GPL")
arch=('any')
depends=('blender' 'gifsicle' 'imagemagick')
groups=('blender')
makedepends=('unzip')
source=("https://github.com/doakey3/Bligify/releases/download/1.3.5/Bligify.zip")
md5sums=('d604422b40611c84b09a90d91ab60e69')
package() {
addons="$pkgdir/usr/share/blender/$(blender -v | head -n1 | cut -f2 -d ' ')/scripts/addons/"
if [ ! -d "$addons" ]; then
mkdir -p "$addons"
fi
unzip Bligify -d "$addons"
}
|