9 lines
186 B
Plaintext
Executable File
9 lines
186 B
Plaintext
Executable File
# 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}"
|
|
}
|