Package Details: meshapp-bin 2.3.4-3

Git Clone URL: https://aur.archlinux.org/meshapp-bin.git (read-only, click to copy)
Package Base: meshapp-bin
Description: A full-featured desktop client for managing devices and communication in the Meshtastic mesh network.
Upstream URL: https://git.privatepractice.app/covox/meshapp
Licenses: GPL3
Conflicts: meshapp
Provides: meshapp
Submitter: krotesk
Maintainer: krotesk
Last Packager: krotesk
Votes: 0
Popularity: 0.000000
First Submitted: 2026-05-07 08:00 (UTC)
Last Updated: 2026-07-13 06:59 (UTC)

Latest Comments

x0x01 commented on 2026-06-07 08:09 (UTC) (edited on 2026-06-07 08:34 (UTC) by x0x01)

bsdtar: Error opening archive: Failed to open 'data.tar.zst'

fix:

source=("${url}/releases/download/v${pkgver}/${pkgname%-bin}_${pkgver}_amd64.deb")
sha256sums=('SKIP') # or real sha replace
prepare() {
    mkdir -p app
    bsdtar xzf data.tar.zst -C app

    mkdir -p app/usr/share/applications/
    if [ -f "app/opt/${pkgname%-bin}/lib/${fullpkgname}.desktop" ]; then
        mv "app/opt/${pkgname%-bin}/lib/${fullpkgname}.desktop" "app/usr/share/applications/${fullpkgname}.desktop"
    fi
}

package() {
    cp -r app/* "${pkgdir}/"
    if [ -f "${pkgdir}/opt/${pkgname%-bin}/share/doc/copyright" ]; then
        install -D -m644 "${pkgdir}/opt/${pkgname%-bin}/share/doc/copyright" "${pkgdir}/usr/share/licenses/${pkgname%-bin}/LICENSE"
    fi
}