aur/build.sh
nyyu b80073a4c1
All checks were successful
continuous-integration/drone/push Build is passing
shell check
2021-05-19 10:30:23 +02:00

19 lines
389 B
Bash
Executable file

#!/bin/bash
pacman -Syu --noconfirm
useradd build -m
echo 'build ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
chown -R build:build .
for d in */ ; do
echo "$d"
cd "$d" || continue
if sudo -u build sh -c 'makepkg -s --skippgpcheck --noconfirm' ; then
for pkg in *.pkg.tar.zst ; do
cp "$pkg" /repo/
repo-add /repo/nyyu.db.tar.zst /repo/"$pkg"
done
fi
cd ..
done