dotfiles/.local/bin/mkaur

9 lines
186 B
Plaintext
Raw Normal View History

# 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}"
}