Last active
December 2, 2016 14:02
-
-
Save larsch/3327aa2d607794ddb735 to your computer and use it in GitHub Desktop.
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
| #!/bin/sh -ex | |
| sudo pacman -Sy base-devel --needed --noconfirm | |
| curl -O https://aur.archlinux.org/packages/pa/package-query/package-query.tar.gz | |
| tar xfz package-query.tar.gz -C /tmp | |
| pushd /tmp/package-query | |
| makepkg --noconfirm -sf | |
| sudo pacman -U --noconfirm package-query-*.pkg.tar.xz | |
| popd | |
| curl -O https://aur.archlinux.org/packages/ya/yaourt/yaourt.tar.gz | |
| tar xfz yaourt.tar.gz -C /tmp | |
| pushd /tmp/yaourt | |
| makepkg --noconfirm -sf | |
| sudo pacman -U --noconfirm yaourt-*.pkg.tar.xz | |
| popd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment