A tool for automating builds of AUR packages and putting them on a repo.
Create folders for the repo and PKGBUILDs:
mkdir repo packagesAdd your favorite AUR packages to a file:
echo awesome-git >> packages.list && echo yay >> packages.listRun autoaur:
./autoaur.py --packages packages.list --packages-path $(pwd)/packages --output $(pwd)/repoAutomating 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