Package Details: babblecalibration-bin 1.0.7-2

Git Clone URL: https://aur.archlinux.org/babblecalibration-bin.git (read-only, click to copy)
Package Base: babblecalibration-bin
Description: Godot-based OpenVR/OpenXR eye tracking calibrator app
Upstream URL: https://github.com/Project-Babble/BabbleCalibration
Keywords: baballonia babble eye face tracking vr
Licenses: LicenseRef-Babble Software Distribution License 1.0
Provides: babblecalibration
Submitter: awh
Maintainer: awh
Last Packager: awh
Votes: 0
Popularity: 0.000000
First Submitted: 2026-03-23 21:27 (UTC)
Last Updated: 2026-03-23 21:52 (UTC)

Dependencies (1)

Required by (1)

Sources (3)

Latest Comments

awh commented on 2026-03-23 22:08 (UTC)

Non -bin version is something like the following in case anyone wants to try and fix it. It's currently broken because the godot-export-templates-linux AUR package does not include templates for godot-mono, just regular godot (which does not compile the C# scripts as requried). Pretty sure there are other issues with the localization or something too. The templates are also like 1.1GB which seems annoying to download for building every time.

# Maintainer: awh (https://aur.archlinux.org/account/awh)

pkgname=babblecalibration
pkgver=1.0.7
pkgrel=1
pkgdesc="Godot-based OpenVR/OpenXR eye tracking calibrator app"
arch=('x86_64' 'aarch64')
url="https://github.com/Project-Babble/BabbleCalibration"
license=('LicenseRef-Babble Software Distribution License 1.0')

pkgver() {
    cd "$pkgname"
    git describe --tags --abbrev=0 main
}

makedepends=(
    godot
    godot-export-templates-linux
)
#depends=(
#)

source=(
    "${pkgname}::git+${url}.git#tag=${pkgver}"
    "LICENSE"
   )
sha256sums=('SKIP'
            '88bec1dde0ff33748c5fe396905e8db3ca7f6c6788c27b070147d18d5af94c99')
build() {
    cd "${pkgname}/"
    mkdir -p .export/Linux
    ln -sf /usr/share/godot/export_templates/ ~/.local/share/godot/export_templates/
    godot --headless --export-release Linux
}
package() {
    cd "${pkgname}/"
    mkdir -p "${pkgdir}/opt/${pkgname}/"
    cp -a .export/Linux/* "${pkgdir}/opt/${pkgname}/"
    install -Dm644 "${srcdir}/LICENSE"            "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}