Package Details: blender-plugin-retopoflow 1.2.0-2

Git Clone URL: https://aur.archlinux.org/blender-plugin-retopoflow.git (read-only, click to copy)
Package Base: blender-plugin-retopoflow
Description: A suite of retopology tools for Blender
Upstream URL: https://cgcookiemarkets.com/all-products/retopoflow/
Licenses: GPL
Conflicts: blender-plugin-retopoflow-git
Submitter: fab31
Maintainer: fab31
Last Packager: fab31
Votes: 1
Popularity: 0.000000
First Submitted: 2016-04-22 20:18 (UTC)
Last Updated: 2016-04-25 11:58 (UTC)

Required by (0)

Sources (0)

Latest Comments

bartus commented on 2016-09-08 10:24 (UTC) (edited on 2016-09-19 17:35 (UTC) by bartus)

Made an up to date PKGBUILD script for this package. Already updated the '-git' package as both are almost identical (despite the "#tag=" enforced in the source definition here) PKGBUILD: # Maintainer: Fabien Devaux <fdev31@gmail.com> # updated by: bartus szczepaniak <aur@bartus.33mail.com> name=retopoflow pkgname=blender-plugin-${name} pkgver=1.2.0.r0.ge7368b7 pkgrel=1 pkgdesc="A suite of retopology tools for Blender" arch=('any') url="https://cgcookiemarkets.com/all-products/retopoflow/" license=('GPL') depends=('blender') makedepends=('git') conflicts=('blender-plugin-retopoflow-git') source=("git+https://github.com/CGCookie/retopoflow.git#tag=v1.2.0") md5sums=('SKIP') pkgver() { cd ${name} # cutting off 'v' prefix that presents in the git tag git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g' } package() { cd ${srcdir} addons="$pkgdir/usr/share/blender/$(blender -v | head -n1 | cut -f2 -d ' ')/scripts/addons" install -d 755 ${addons}/${name} cp -Ta ${name} ${addons}/${name} } # vim:set ts=2 sw=2 et:

fab31 commented on 2016-05-03 08:06 (UTC)

Yep, but it's not taking the "master" anymore, but a fixed revision. I should just replace the git with a simple ZIP download, since it's working this way I didn't touch yet...

skrylar commented on 2016-05-02 19:28 (UTC)

Isn't the AUR convention to have packages built freshly from git have the -git suffix?