mirror of
https://github.com/s83/aur-helper.git
synced 2024-11-23 06:18:59 +00:00
24 lines
421 B
Bash
24 lines
421 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
echo -n "Enter your desired AUR package: "
|
||
|
read pkg
|
||
|
|
||
|
aurpkgdir=/tmp/aurpkg
|
||
|
aurpkg="${pkg}.tar.gz"
|
||
|
pwd=$(pwd)
|
||
|
|
||
|
mkdir -p "$aurpkgdir" && cd "$aurpkgdir"
|
||
|
|
||
|
curl -o "$aurpkg" "https://aur.archlinux.org/cgit/aur.git/snapshot/${aurpkg}"
|
||
|
|
||
|
if [ "$?" = "0" ]; then
|
||
|
tar xvf "${aurpkg}"
|
||
|
cd "${pkg}"
|
||
|
makepkg -si
|
||
|
cd "$pwd"
|
||
|
else
|
||
|
echo 'Package not found. Are you sure it is in the AUR?'
|
||
|
cd "$pwd"
|
||
|
exit 1
|
||
|
fi
|