mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
13 lines
263 B
Bash
Executable File
13 lines
263 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
for PACKAGE in "$@"; do
|
|
BUILD_DIR="$(mktemp -d)"
|
|
git clone https://aur.archlinux.org/"$PACKAGE".git "$BUILD_DIR"
|
|
cd "$BUILD_DIR"
|
|
makepkg --nocheck --noconfirm --install --rmdeps --syncdeps
|
|
cd /
|
|
rm -r "$BUILD_DIR"
|
|
done
|