Skip to content

Instantly share code, notes, and snippets.

@mantono
Created October 16, 2017 20:16
Show Gist options
  • Save mantono/6ccd7771aa10645e51b174e3811aa087 to your computer and use it in GitHub Desktop.
Save mantono/6ccd7771aa10645e51b174e3811aa087 to your computer and use it in GitHub Desktop.
Stupid simple way of installing packages from https://aur.archlinux.org/
#!/bin/bash -l
/etc/profile.d/perlbin.sh # Maybe not needed
cd /tmp &&
git clone --progress https://aur.archlinux.org/$1.git
cd $1 &&
makepkg -si
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment