Package Details: lichtblick-bin 1.22.1-2

Git Clone URL: https://aur.archlinux.org/lichtblick-bin.git (read-only, click to copy)
Package Base: lichtblick-bin
Description: Integrated visualization and diagnosis tool for robotics
Upstream URL: https://github.com/Lichtblick-Suite/lichtblick
Licenses: MPL-2.0
Conflicts: lichtblick
Provides: lichtblick
Submitter: joajfreitas
Maintainer: joajfreitas (SammysHP)
Last Packager: SammysHP
Votes: 0
Popularity: 0.000000
First Submitted: 2025-03-07 19:17 (UTC)
Last Updated: 2026-01-09 14:17 (UTC)

Latest Comments

SammysHP commented on 2025-10-21 06:17 (UTC)

Thanks for the update. There's still the wrong symlink and a newline in source_aarch64.

SammysHP commented on 2025-10-08 12:20 (UTC)

Thanks for maintaining this package. The PKGBUILD is missing the dependencies. I asked namcap to generate them, but haven't checked for redundancies. I also shortened the long description, fixed the license definition, multi arch support and the symlink creation in package().

# Maintainer: João Freitas <joaj.freitas@gmail.com>
# Contributor: Sven Karsten Greiner <sven@sammyshp.de>

pkgname=lichtblick-bin
pkgver=1.20.0
pkgrel=1
pkgdesc='Integrated visualization and diagnosis tool for robotics'
arch=('x86_64' 'aarch64')
license=('MPL-2.0')
url='https://github.com/Lichtblick-Suite/lichtblick'
depends=(
    'alsa-lib'
    'at-spi2-core'
    'cairo'
    'dbus'
    'expat'
    'gcc-libs'
    'glib2'
    'glibc'
    'gtk3'
    'hicolor-icon-theme'
    'libcups'
    'libx11'
    'libxcb'
    'libxcomposite'
    'libxdamage'
    'libxext'
    'libxfixes'
    'libxkbcommon'
    'libxrandr'
    'mesa'
    'nspr'
    'nss'
    'pango'
    'systemd-libs'
)
optdepends=()
provides=('lichtblick')
conflicts=('lichtblick')
source_x86_64=("$pkgname-$pkgver-x86_64.deb::https://github.com/lichtblick-suite/lichtblick/releases/download/v$pkgver/lichtblick-$pkgver-linux-amd64.deb")
source_aarch64=("$pkgname-$pkgver-aarch64.deb::https://github.com/lichtblick-suite/lichtblick/releases/download/v$pkgver/lichtblick-$pkgver-linux-arm64.deb")
sha256sums_x86_64=('3f625aac6a92952b33c64fbcc925686ef9fad3145268cc53cda2788034449004')
sha256sums_aarch64=('2e9a44c642a479061335388ee640db45a00f462e3ca6a2dcc3a763bc3a53bba8')

package() {
    tar -xf "$srcdir/data.tar.xz" -C "$pkgdir"

    install -Dm644 "$pkgdir/usr/share/icons/hicolor/512x512/apps/lichtblick.png" "$pkgdir/usr/share/pixmaps/lichtblick.png"

    mkdir -p "$pkgdir/usr/bin"
    ln -s "/opt/Lichtblick/lichtblick" "$pkgdir/usr/bin/lichtblick"
}