mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
6 lines
158 B
Bash
6 lines
158 B
Bash
#!/bin/bash
|
|
wget https://aur.archlinux.org/cgit/aur.git/snapshot/$1.tar.gz
|
|
tar -xvzf $1.tar.gz
|
|
cd $1 && makepkg --no-confirm -si
|
|
cd .. && rm -rf $1 $1.tar.gz
|