Refactor lutris installation
This commit is contained in:
parent
5e02dd9b97
commit
e9a5f06bd8
2 changed files with 61 additions and 2 deletions
|
@ -102,8 +102,9 @@ yay --noconfirm -Syu \
|
||||||
|
|
||||||
# Games
|
# Games
|
||||||
yay --noconfirm -Syu \
|
yay --noconfirm -Syu \
|
||||||
steam \
|
steam;
|
||||||
lutris;
|
|
||||||
|
. "../Software/Lutris/install.sh";
|
||||||
|
|
||||||
# Coding
|
# Coding
|
||||||
yay --noconfirm -Syu \
|
yay --noconfirm -Syu \
|
||||||
|
|
58
scripts/Arch/Software/Lutris/install.sh
Executable file
58
scripts/Arch/Software/Lutris/install.sh
Executable file
|
@ -0,0 +1,58 @@
|
||||||
|
#!/bin/bash
|
||||||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||||||
|
|
||||||
|
. ../../Config/pacman/install.sh;
|
||||||
|
|
||||||
|
yay --noconfirm -Syu \
|
||||||
|
lutris;
|
||||||
|
|
||||||
|
yay --noconfirm --needed -Syu \
|
||||||
|
wine-staging \
|
||||||
|
giflib \
|
||||||
|
lib32-giflib \
|
||||||
|
libpng \
|
||||||
|
lib32-libpng \
|
||||||
|
libldap \
|
||||||
|
lib32-libldap \
|
||||||
|
gnutls \
|
||||||
|
lib32-gnutls \
|
||||||
|
mpg123 \
|
||||||
|
lib32-mpg123 \
|
||||||
|
openal \
|
||||||
|
lib32-openal \
|
||||||
|
v4l-utils \
|
||||||
|
lib32-v4l-utils \
|
||||||
|
libpulse \
|
||||||
|
lib32-libpulse \
|
||||||
|
libgpg-error \
|
||||||
|
lib32-libgpg-error \
|
||||||
|
alsa-plugins \
|
||||||
|
lib32-alsa-plugins \
|
||||||
|
alsa-lib \
|
||||||
|
lib32-alsa-lib \
|
||||||
|
libjpeg-turbo \
|
||||||
|
lib32-libjpeg-turbo \
|
||||||
|
sqlite \
|
||||||
|
lib32-sqlite \
|
||||||
|
libxcomposite \
|
||||||
|
lib32-libxcomposite \
|
||||||
|
libxinerama \
|
||||||
|
lib32-libgcrypt \
|
||||||
|
libgcrypt \
|
||||||
|
lib32-libxinerama \
|
||||||
|
ncurses \
|
||||||
|
lib32-ncurses \
|
||||||
|
ocl-icd \
|
||||||
|
lib32-ocl-icd \
|
||||||
|
libxslt \
|
||||||
|
lib32-libxslt \
|
||||||
|
libva \
|
||||||
|
lib32-libva \
|
||||||
|
gtk3 \
|
||||||
|
lib32-gtk3 \
|
||||||
|
gst-plugins-base-libs \
|
||||||
|
lib32-gst-plugins-base-libs \
|
||||||
|
vulkan-icd-loader \
|
||||||
|
lib32-vulkan-icd-loader;
|
||||||
|
|
||||||
|
popd > /dev/null;
|
Loading…
Reference in a new issue