diff options
author | begin-theadventure | 2024-06-12 16:15:17 +0200 |
---|---|---|
committer | begin-theadventure | 2024-06-12 16:15:17 +0200 |
commit | 24104c9d55ec73ffe3376c8676c8e72a1e241872 (patch) | |
tree | e84f6a400a4d88d1653b99151223fa3ca92d190b | |
parent | 567783ccc05283232aecedb2c205d6510a766002 (diff) | |
download | aur-24104c9d55ec73ffe3376c8676c8e72a1e241872.tar.gz |
Fix kitch to itch version
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 7 |
2 files changed, 5 insertions, 4 deletions
@@ -1,7 +1,7 @@ pkgbase = kitch-bin pkgdesc = The itch.io desktop app (beta channel) (binary release) pkgver = 26.1.9 - pkgrel = 4 + pkgrel = 5 url = https://itchio.itch.io/kitch arch = x86_64 license = MIT @@ -2,7 +2,7 @@ pkgname=kitch-bin pkgver=26.1.9 -pkgrel=4 +pkgrel=5 pkgdesc="The itch.io desktop app (beta channel) (binary release)" url="https://itchio.itch.io/kitch" license=('MIT') @@ -24,8 +24,8 @@ prepare() { echo "# Creating two symlinks under the HOME directory" && sleep 1 echo "# to fix the firejail issue, see:" && sleep 1 echo "# https://github.com/itchio/itch/issues/2732" && sleep 4 - _DIR="$HOME/.config/kitch/prereqs/firejail-amd64" - _DIR2="$HOME/.config/kitch/prereqs/firejail-386" + _DIR="$HOME/.config/itch/prereqs/firejail-amd64" + _DIR2="$HOME/.config/itch/prereqs/firejail-386" mkdir -p $_DIR $_DIR2 ln -sf /usr/bin/firejail $_DIR ln -sf /usr/bin/firejail $_DIR2 @@ -54,5 +54,6 @@ package() { install -Dm644 resources/app/src/static/images/window/kitch/icon-32.png "$pkgdir/usr/share/icons/hicolor/32x32/apps/kitch.png" rm LICENSE kitch.desktop itch-linux-amd64-$pkgver.zip mv * "$pkgdir/opt/kitch" + ln -s /opt/kitch/itch "$pkgdir/opt/kitch/kitch" ln -s /opt/kitch/kitch "$pkgdir/usr/bin" } |