mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-05-04 10:03:48 +01: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
|