yuzu-src/.github/workflows/AppRun

19 lines
696 B
Plaintext
Raw Permalink Normal View History

2020-12-30 07:45:46 +13:00
#!/bin/bash
2021-07-30 10:15:03 +12:00
export GDK_PIXBUF_MODULEDIR=$(pkg-config --variable=gdk_pixbuf_moduledir gdk-pixbuf-2.0)
export GDK_PIXBUF_MODULE_FILE=$(pkg-config --variable=gdk_pixbuf_cache_file gdk-pixbuf-2.0)
2020-12-30 07:45:46 +13:00
mkdir -p $HOME/.local/share/icons/hicolor/scalable/apps && cp $APPDIR/yuzu.svg $HOME/.local/share/icons/hicolor/scalable/apps
2022-04-17 01:49:06 +12:00
GITURL='https://api.github.com/repos/pineappleEA/pineapple-src/releases/latest'
2022-04-16 10:59:36 +12:00
GITVER=`( wget -qO- $GITURL 2>/dev/null || curl -sL $GITURL ) | grep "EA-" | grep -o 'EA-[[:digit:]]*'`
2020-12-30 07:45:46 +13:00
APPVER=`cat $APPDIR/version.txt`
if [[ -z "$GITVER" ]]; then
2022-04-12 15:12:38 +12:00
$APPDIR/AppRun-patched "$@"
elif [ "$GITVER" = "$APPVER" ]; then
2022-04-12 15:12:38 +12:00
$APPDIR/AppRun-patched "$@"
2020-12-30 07:45:46 +13:00
else
2022-04-12 15:12:38 +12:00
$APPDIR/update.sh "$@"
2020-12-30 07:45:46 +13:00
fi