Package Details: sgdboop-bin 1.3.1-1

Git Clone URL: https://aur.archlinux.org/sgdboop-bin.git (read-only, click to copy)
Package Base: sgdboop-bin
Description: automatically applies assets from SteamGridDB directly to your Steam library
Upstream URL: https://www.steamgriddb.com/boop
Keywords: steam steamgrid steamgriddb
Licenses: zlib
Conflicts: sgdboop
Submitter: nomis6432
Maintainer: envolution
Last Packager: envolution
Votes: 16
Popularity: 1.52
First Submitted: 2022-04-29 14:31 (UTC)
Last Updated: 2025-06-13 10:47 (UTC)

Pinned Comments

Tomoghno commented on 2023-09-16 13:58 (UTC)

sorry guys i was busy for a while so i couldn't maintain this package

Latest Comments

dioxias commented on 2025-05-04 01:47 (UTC)

updated PKGBUILD for the latest version (1.3.1):


# Maintainer: Tomoghno Sen <tomoghno@outlook.com>

pkgname=sgdboop-bin
_pkgname=sgdboop
pkgver=1.3.1
pkgrel=1
pkgdesc="SGDBoop is a tool that automatically applies assets from SteamGridDB directly to your Steam library"
arch=('x86_64')
url="https://www.steamgriddb.com/boop"
license=('MIT')
conflicts=('sgdboop')
depends=('shared-mime-info')

source=("https://github.com/SteamGridDB/SGDBoop/releases/download/v${pkgver}/sgdboop-linux64.tar.gz"
    "x-$_pkgname.xml")
sha512sums=('eaec0cc31206f2fe966692d922ba402c052cbe44fbd0f4cf375ba7fa4ac6a3d080b529913a1822bca17afe445f97c374d8a46b02657ace5281f0ad6a95fa3867'
    '35f57bab67171e96fbe2b2a11b7a4c95f06083f95af683286eb2014f61c0ad8bbc3ce913a7adc0cfa15337725bdf414e5360ca6a813e72c1b1622171b0c0a62d')

package() {
    install -dm755 "${pkgdir}/usr/bin"
    install -Dm755 "$srcdir/SGDBoop" "$pkgdir/usr/bin/SGDBoop"

    install -Dm644 "$srcdir/com.steamgriddb.SGDBoop.desktop" -t "$pkgdir/usr/share/applications"

    mkdir -p "$pkgdir/usr/share/mime/packages"
    install -m644 "x-$_pkgname.xml" "$pkgdir/usr/share/mime/packages/x-$_pkgname.xml"

    echo "Go to the following website and press the blue button (Step 2) to enable the boop function:"
    echo "https://www.steamgriddb.com/boop"
}

Tomoghno commented on 2023-09-16 13:58 (UTC)

sorry guys i was busy for a while so i couldn't maintain this package

pooroligarch commented on 2023-07-13 08:19 (UTC)

Updated pkgbuild for new release: https://pastebin.com/NZwM1Gj3

viggy96 commented on 2022-09-04 17:38 (UTC)

Build failure in the latest version:

==> Validating source files with sha512sums...
    sgdboop-linux64.tar.gz ... FAILED
    x-sgdboop.xml ... Passed
==> ERROR: One or more files did not pass the validity check!
Failed to build sgdboop-bin

nomis6432 commented on 2022-05-29 12:49 (UTC)

@Dasug: thank you for the report. I've fixed it

Dasug commented on 2022-05-28 20:54 (UTC)

The SHA512 checksum check fails for sgdboop-linux64.tar.gz when installing. The checksum for referenced file when I download it is: 8ecc651690ca2a6c46e43114243e1434190ca6d251dacfc4b1a199e15c140ba535994f71da69bef4584aaa48506c5ce69f8c2473a7321b31cacde27c33da0f38

Also when trying to run the binary, I get the following error message:

SGDBoop: error while loading shared libraries: libiup.so: cannot open shared object file: No such file or directory

The libiup.so is included in the sgdboop-linux64.tar.gz, but does not seem to be installed.

Adding the following lines to the PKGBUILD fixed the issue for me:

install -dm755 "${pkgdir}/usr/lib"
install -Dm644 "$srcdir/libiup.so" "$pkgdir/usr/lib/libiup.so"