mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2024-12-28 18:46:06 +00:00
85f45d2788
Some checks failed
Build and Release / clang-format (push) Has been cancelled
Build and Release / get-info (push) Has been cancelled
Build and Release / reuse (push) Has been cancelled
Build and Release / windows-sdl (push) Has been cancelled
Build and Release / windows-qt (push) Has been cancelled
Build and Release / macos-sdl (push) Has been cancelled
Build and Release / macos-qt (push) Has been cancelled
Build and Release / linux-sdl (push) Has been cancelled
Build and Release / linux-qt (push) Has been cancelled
Build and Release / pre-release (push) Has been cancelled
* Add scalable vector redraw of shadps4 icon * Update icon name in desktop file * Fix svg
22 lines
926 B
Bash
Executable file
22 lines
926 B
Bash
Executable file
# SPDX-FileCopyrightText: 2024 shadPS4 Emulator Project
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#!/bin/bash
|
|
|
|
if [[ -z $GITHUB_WORKSPACE ]]; then
|
|
GITHUB_WORKSPACE="${PWD%/*}"
|
|
fi
|
|
|
|
# Prepare Tools for building the AppImage
|
|
wget -q https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
|
|
wget -q https://github.com/linuxdeploy/linuxdeploy-plugin-checkrt/releases/download/continuous/linuxdeploy-plugin-checkrt-x86_64.sh
|
|
|
|
chmod a+x linuxdeploy-x86_64.AppImage
|
|
chmod a+x linuxdeploy-plugin-checkrt-x86_64.sh
|
|
|
|
# Build AppImage
|
|
./linuxdeploy-x86_64.AppImage --appdir AppDir
|
|
./linuxdeploy-plugin-checkrt-x86_64.sh --appdir AppDir
|
|
./linuxdeploy-x86_64.AppImage --appdir AppDir -d "$GITHUB_WORKSPACE"/.github/shadps4.desktop -e "$GITHUB_WORKSPACE"/build/shadps4 -i "$GITHUB_WORKSPACE"/src/images/net.shadps4.shadPS4.svg --output appimage
|
|
mv shadPS4-x86_64.AppImage Shadps4-sdl.AppImage
|