Package Details: gdscript-formatter-bin 0.20.1-1

Git Clone URL: https://aur.archlinux.org/gdscript-formatter-bin.git (read-only, click to copy)
Package Base: gdscript-formatter-bin
Description: A fast code formatter for GDScript and Godot 4, written in Rust
Upstream URL: https://github.com/GDQuest/GDScript-formatter
Keywords: gdscript, godot
Licenses: MIT
Conflicts: gdscript-formatter
Provides: gdscript-formatter
Submitter: None
Maintainer: derekrgreene
Last Packager: derekrgreene
Votes: 6
Popularity: 1.54
First Submitted: 2025-09-26 06:56 (UTC)
Last Updated: 2026-06-25 02:22 (UTC)

Latest Comments

Blazock commented on 2026-06-23 18:28 (UTC)

Hi @derekrgreene, this package has been flagged out-of-date for over a month and upstream released v0.20.1. I've tested it locally and attached the updated PKGBUILD for your reference.

# Maintainer: Derek R. Greene <derek@derekrgreene.com>

pkgname=gdscript-formatter-bin
pkgver=0.20.1
pkgrel=1
pkgdesc=" A fast code formatter for GDScript and Godot 4, written in Rust "
arch=(x86_64)
url=https://github.com/GDQuest/GDScript-formatter
license=(MIT)
provides=('gdscript-formatter')
conflicts=('gdscript-formatter')
options=('!strip')
source=(
    "https://github.com/GDQuest/GDScript-formatter/releases/download/$pkgver/gdscript-formatter-$pkgver-linux-x86_64.zip"
    "https://raw.githubusercontent.com/GDQuest/GDScript-formatter/refs/tags/$pkgver/LICENSE")
sha256sums=('8cd2a9e8520bc4d0f80a51bca8b3cb4295f9f4f21f7b09aec95a058271729077'
            'dfbd41d6f39efbc96ca870f74f341f10ad44c1d66feca2049629917d19c2251c')

package() {
    install -d "${pkgdir}/usr/bin/"
    install -d "${pkgdir}/usr/share/applications/"

    install -Dm755 "gdscript-formatter-$pkgver-linux-x86_64" "${pkgdir}/opt/${pkgname}/gdscript-formatter"

    install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"

    ln -s "/opt/${pkgname}/gdscript-formatter" "${pkgdir}/usr/bin/gdscript-formatter"
}