summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d2765f19f154ac2e2d72bd89dce5aaf36c81a34e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# maintained by: bartus szczepaniak <aur@bartus.33mail.com>

name=yavne
version=1.3.0
#fragment="#commit=7e49329 "
files=(__init__.py operators.py panel.py preferences.py utils.py)
pkgname=blender-plugin-${name}
pkgver=1.3.0_r16.8eb2b18
pkgrel=1
pkgdesc="This Blender addon provides a set of tools for editing vertex normals. Y.A.V.N.E. can dramatically improve the visual quality of a mesh without altering geometry."
arch=('any')
url="https://github.com/fedackb/yavne"
license=('GPL')
depends=('blender')
makedepends=('git')
source=("${name}::git+https://github.com/fedackb/yavne.git${fragment}")
md5sums=('SKIP')

pkgver() {
  cd ${name}
  printf "${version}_r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

package() {
  cd ${name}
  addons="$pkgdir/usr/share/blender/$(blender -v | head -n1 | cut -f2 -d ' ')/scripts/addons"
  install -dm755 ${addons}/${name}
  for file in  ${files[@]} ; do install -m 755 ${file} ${addons}/${name}/${file} ; done
#  install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}

# vim:set ts=2 sw=2 et: