A tool for automating builds of AUR packages and putting them on a repo.
Create folders for the repo and PKGBUILDs:
mkdir repo packages
Add your favorite AUR packages to a file:
echo awesome-git >> packages.list && echo yay >> packages.list
Run autoaur:
./autoaur.py --packages packages.list --packages-path $(pwd)/packages --output $(pwd)/repo
Automating updates is possible with a cron job. Here's an example that checks for updates every hour at minute zero:
0 * * * * /home/exampleuser/autoaur/autoaur.py --packages packages.list --packages-path /home/exampleuser/autoaur/packages --output /home/exampleuser/autoaur/packages/repo