Package Details: sprytile 0.5.10-2

Git Clone URL: https://aur.archlinux.org/sprytile.git (read-only, click to copy)
Package Base: sprytile
Description: A blender addon for creating tile based low spec 3D scenes.
Upstream URL: https://github.com/Sprytile/Sprytile
Licenses: MIT
Submitter: turtlewit
Maintainer: turtlewit
Last Packager: turtlewit
Votes: 0
Popularity: 0.000000
First Submitted: 2019-03-05 05:12 (UTC)
Last Updated: 2022-07-23 18:04 (UTC)

Required by (0)

Sources (1)

Latest Comments

alexaib commented on 2022-07-23 13:06 (UTC)

Updated PKGBUILD to install onto existing Blender data directory. Current PKGBUILD installs to the wrong directory (3.2. instead of 3.2 on /usr/share/blender).

# Maintainer: Kat Witten <turtlewit@live.com>
# Contributor: Alejandro Aibar <alexaib at outlook dot es>
pkgname=sprytile
pkgver=0.5.10
pkgrel=1
pkgdesc="A blender addon for creating tile based low spec 3D scenes."
arch=('any')
url="https://github.com/Sprytile/Sprytile"
license=('MIT')
depends=('blender')
source=("${pkgname}-${pkgver}"::"https://github.com/Sprytile/Sprytile/archive/v${pkgver}.tar.gz")
md5sums=('cc7a0ebb992dd3b61d4b19d8cc838ff0')

package() {
        cd "Sprytile-$pkgver"
        addons="$pkgdir/usr/share/blender/$(blender -v | head -n1 | cut -f2 -d ' ' | cut -f1,2 -d '.')/scripts/addons"

        install -dm755 "${addons}/SpryTile"
        install -d "${pkgdir}/usr/share/licenses/sprytile"

        install license.txt "${pkgdir}/usr/share/licenses/sprytile/LICENSE"
        cp -r ./ "${addons}/SpryTile/"
}