mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-09 12:19:09 +00:00
13 lines
181 B
Bash
13 lines
181 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
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
|