Good catch @1ace. Fixed, thanks!
Search Criteria
Package Details: godot-blender-exporter-git 252.3e66e12-1
Package Actions
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: | GPL-2.0 |
Conflicts: | godot-blender-exporter |
Provides: | godot-blender-exporter |
Submitter: | rcorre |
Maintainer: | rcorre |
Last Packager: | rcorre |
Votes: | 6 |
Popularity: | 0.000002 |
First Submitted: | 2020-06-14 17:10 (UTC) |
Last Updated: | 2020-12-23 17:29 (UTC) |
Dependencies (3)
Required by (0)
Sources (1)
Latest Comments
rcorre commented on 2020-12-23 17:29 (UTC)
1ace commented on 2020-12-20 15:37 (UTC)
_blenderver
(line 16) needs | sed 's/\.0$//'
, without that this package is broken right now :)
rcorre commented on 2020-06-14 17:14 (UTC)
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 (UTC) (edited on 2020-06-14 14:30 (UTC) by ronjouch)
Nit: could this package be renamed to godot-blender-exporter-git
(ending with -git
), and be added a Provides: godot-blender-exporter
? The fact that it's not causes AUR helpers (I use yay
) to not know it's a git package, for which the version is computed during build, and that causes warnings:
-> godot-blender-exporter: local (228.274f668-1) is newer than AUR (132.fb7f25d-1)
Thanks for the packaging!
rcorre commented on 2019-01-19 17:00 (UTC)
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 (UTC)
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 }
Pinned Comments