Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] main from pkgforge-dev:main #13

Merged
merged 5 commits into from
Jan 15, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/Dolphin_sharun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ jobs:

pacman-key --init && pacman-key --populate archlinux
printf "\n[extra]\nInclude = /etc/pacman.d/mirrorlist-arch\n" | tee -a /etc/pacman.conf

cat /etc/pacman.conf
sudo sed -i 's/NoExtract/#NoExtract/g' /etc/pacman.conf

pacman -Syu --noconfirm zsync \
dolphin-emu \
pulseaudio \
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,6 @@ name: CI

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ main ]
paths-ignore: [ '**/README.md' ]
pull_request:
branches: [ main ]
paths-ignore: [ '**/README.md' ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

Expand Down
9 changes: 7 additions & 2 deletions dolphin-emu-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ chmod +x ./lib4bin

xvfb-run -a -- ./lib4bin -p -v -r -e -s -k /usr/bin/dolphin-*

# for some reason the dir needs a capital S?
# when compiled portable this directory needs a capital S
# this is not needed since we are not using a binary that was compiled portable
cp -r /usr/share/dolphin-emu/sys ./bin/Sys

# Deploy Qt manually xd
Expand Down Expand Up @@ -79,9 +80,13 @@ git clone https://github.com/fritzw/ld-preload-open.git preload.tmp
( cd preload.tmp && make all && mv ./path-mapping.so ../ )
rm -rf ./preload.tmp

echo 'PATH_MAPPING="/usr/share/dolphin-emu/sys:${SHARUN_DIR}/bin/Sys"
echo 'PATH_MAPPING="/usr/share/dolphin-emu/sys:${SHARUN_DIR}/bin/Sys:/usr/share/dolphin-emu//../locale:${SHARUN_DIR}/share/locale"
LD_PRELOAD=${SHARUN_DIR}/path-mapping.so' > ./.env

# copy locales, for some reason the dolphin binary tries to look into an invalid /usr/share/dolphin-emu//../locale path
cp -r /usr/share/locale ./share
find ./share/locale -type f ! -name '*dolphin*' -delete

# Prepare sharun
ln ./sharun ./AppRun
./sharun -g
Expand Down
Loading