Last active
August 8, 2017 18:11
-
-
Save fcep/3205ddeb1b16830231b2 to your computer and use it in GitHub Desktop.
Script to install Gallium-Nine on Arch Linux using well supported AUR packages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set -e | |
export LANG=C | |
yes | yaourt -G pacs {lib32-,}mesa-git wine-d3dadapter-git xorg-server-git xf86-input-evdev-git xf86-input-synaptics-git xf86-video-nouveau | |
#pacman -S mesa-git/llvm-svn mesa-git/lib32-llvm-svn | |
sed -i "s@./autogen.sh@./autogen.sh --enable-nine@g" *mesa*/PKGBUILD | |
for i in xorg-server-git xf86*; do | |
cd $i | |
yes | makepkg -si | |
cd .. | |
done | |
for i in {lib32-,}mesa-git; do | |
cd $i | |
ln -s ~/src/git/altro/mesa . | |
yes | makepkg -si | |
cd .. | |
done | |
for i in wine-d3dadapter-git; do | |
cd $i | |
yes | makepkg -si | |
cd .. | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
I forked this script and fixed it so that makepkg doesn't error out on the wine-d3dadapter-git.