mirror of
https://github.com/w23/xash3d-fwgs
synced 2024-12-16 14:10:11 +01:00
37 lines
1.5 KiB
Bash
Executable File
37 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
cd $GITHUB_WORKSPACE
|
|
|
|
if [ "$GH_CPU_ARCH" == "i386" ]; then
|
|
sudo dpkg --add-architecture i386
|
|
sudo apt update
|
|
sudo apt install gcc-multilib g++-multilib libx11-dev:i386 libxext-dev:i386 x11-utils libgl1-mesa-dev libasound-dev libstdc++6:i386 libfuse2:i386 zlib1g:i386
|
|
|
|
wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-i686.AppImage" -O appimagetool.AppImage
|
|
elif [ "$GH_CPU_ARCH" == "amd64" ]; then
|
|
sudo apt update
|
|
sudo apt install libx11-dev libxext-dev x11-utils libgl1-mesa-dev libasound-dev libstdc++6 libfuse2 zlib1g
|
|
|
|
wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" -O appimagetool.AppImage
|
|
elif [ "$GH_CPU_ARCH" == "aarch64" ]; then
|
|
sudo apt update
|
|
sudo apt install libx11-dev libxext-dev x11-utils libgl1-mesa-dev libasound-dev libstdc++6 libfuse2 zlib1g
|
|
|
|
wget "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-aarch64.AppImage" -O appimagetool.AppImage
|
|
else
|
|
exit 1
|
|
fi
|
|
|
|
chmod +x appimagetool.AppImage
|
|
|
|
wget http://libsdl.org/release/SDL2-$SDL_VERSION.zip -O SDL2.zip
|
|
unzip -q SDL2.zip
|
|
mv SDL2-$SDL_VERSION SDL2_src
|
|
|
|
# ref_vk required Vulkan SDK
|
|
wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | sudo apt-key add -
|
|
sudo wget -qO /etc/apt/sources.list.d/lunarg-vulkan-1.2.176-bionic.list https://packages.lunarg.com/vulkan/1.2.176/lunarg-vulkan-1.2.176-bionic.list
|
|
sudo apt update
|
|
[ "$ARCH" = "i386" ] && SUFFIX=":i386" || SUFFIX=""
|
|
sudo apt install -y vulkan-sdk"$SUFFIX"
|