mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 12:19:09 +00:00
10 lines
161 B
Bash
10 lines
161 B
Bash
|
declare -a aur_packages=("lune-bin" "lune-git" "lune")
|
||
|
root_dir=$(pwd)
|
||
|
|
||
|
for package in "${aur_packages[@]}"
|
||
|
do
|
||
|
cd "$package" && makepkg
|
||
|
|
||
|
cd "$root_dir"
|
||
|
done
|