Search Criteria
Package Details: godot-blender-exporter-git 252.3e66e12-1
Git Clone URL: | https://aur.archlinux.org/godot-blender-exporter-git.git (read-only, click to copy) |
---|---|
Package Base: | godot-blender-exporter-git |
Description: | Exporter for Blender, made for the Godot Engine |
Upstream URL: | https://github.com/godotengine/godot-blender-exporter |
Keywords: | blender godot |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | rcorre |
Maintainer: | rcorre |
Last Packager: | rcorre |
Votes: | 6 |
Popularity: | 0.038704 |
First Submitted: | 2020-06-14 17:10 |
Last Updated: | 2020-12-23 17:29 |
Latest Comments
rcorre commented on 2020-12-23 17:29
Good catch @1ace. Fixed, thanks!
1ace commented on 2020-12-20 15:37
_blenderver
(line 16) needs| sed 's/\.0$//'
, without that this package is broken right now :)rcorre commented on 2020-06-14 17:14
Good point! I've created https://aur.archlinux.org/packages/godot-blender-exporter-git which you can start using now, and submitted a request to merge this into the new one. Thanks!
ronjouch commented on 2020-06-14 14:29
Nit: could this package be renamed to
godot-blender-exporter-git
(ending with-git
), and be added aProvides: godot-blender-exporter
? The fact that it's not causes AUR helpers (I useyay
) to not know it's a git package, for which the version is computed during build, and that causes warnings:Thanks for the packaging!
rcorre commented on 2019-01-19 17:00
My formatting got mangled in the comment, so here's what the diff looks like: https://github.com/rcorre/pkgbuilds/commit/006c7e8722532c20d9d6e027b4b9bba3f8ed90e1
rcorre commented on 2019-01-05 14:17
This PKGBUILD now doesn't work with the subdirectories in converters/. The following fixed it for me:
package() { _addondir="$pkgdir/usr/share/blender/$_blenderver/scripts/addons/io_scene_godot" find $srcdir/$pkgname/io_scene_godot/ -mindepth 1 -type d -printf '%P\n' | while read dir; do install -dm755 $_addondir/$dir done find $srcdir/$pkgname/io_scene_godot/ -type f -name '*.py' -printf '%P\n' | while read f; do echo "install $f to $_addondir/$f" install -Dm644 $srcdir/$pkgname/io_scene_godot/$f $_addondir/$f done install -dm755 $pkgdir/usr/share/licenses/$pkgname/licenses install -Dm644 $srcdir/$pkgname/LICENSE.txt $pkgdir/usr/share/licenses/$pkgname/licenses }