9 lines
186 B
Plaintext
9 lines
186 B
Plaintext
|
# Builds a package from the Arch User Repository
|
||
|
function mkaur() {
|
||
|
git clone https://aur.archlinux.org/"${1}"
|
||
|
cd "${1}" || return
|
||
|
makepkg -si "${2}"
|
||
|
cd - || return
|
||
|
rm -rf "${1}"
|
||
|
}
|