Package Details: protonup-qt-bin 2.9.1-1

Git Clone URL: https://aur.archlinux.org/protonup-qt-bin.git (read-only, click to copy)
Package Base: protonup-qt-bin
Description: Install and manage Proton-GE for Steam and Wine-GE for Lutris with this graphical user interface.
Upstream URL: https://davidotek.github.io/protonup-qt
Keywords: lutris proton steam wine
Licenses: GPL3
Conflicts: protonup-qt
Provides: protonup-qt
Submitter: R1yuu
Maintainer: R1yuu
Last Packager: R1yuu
Votes: 17
Popularity: 0.41
First Submitted: 2022-10-05 15:16 (UTC)
Last Updated: 2024-02-25 15:27 (UTC)

Dependencies (1)

Required by (1)

Sources (3)

Latest Comments

drokas commented on 2024-02-18 10:19 (UTC) (edited on 2024-02-18 10:20 (UTC) by drokas)

Please update the package to latest version. AppImage version 2.9.1 is already available

I have already tested with the new version changes on a local git branch and it seems to be working as intended. Please bump up the version in aur as well.

stop50 commented on 2023-08-26 07:38 (UTC)

it misses the requirement of fuse2. Appimages don't work with fuse3

orlfman commented on 2023-01-02 03:35 (UTC)

thanks for providing the appimage version.

R1yuu commented on 2022-10-05 23:04 (UTC)

Thank you for the feedback @yochananmarqos. I updated the PKGBUILD to use the icons from the AppImage.

yochananmarqos commented on 2022-10-05 17:37 (UTC)

The icons are in the AppImage. Extract it and install them from there:

prepare() {
  chmod +x "$_pkgname-$pkgver-$CARCH.AppImage"
  ./"$_pkgname-$pkgver-$CARCH.AppImage" --appimage-extract
}

In the package() function:

  install -d "$pkgdir/usr/share/icons/"
  cp -r squashfs-root/usr/share/icons/hicolor/ "$pkgdir/usr/share/icons/"

The noextract() array is unnecessary as AppImages are not automatically extracted.