2 files modified
1 files added
| | |
| | | # - Multiple packages from a single PKGBUILD :: Some PKGBUILDs can create many packages at once, currently I am unable to handle this. |
| | | - AUR dependency checking and automatic resolution :: Something like what aurutils does, maybe I can steal it from there |
| | | - Error catching for builds which fail. :: Have emailing, but nothing more advanced. Would be nice to have some basic error handling in the script |
| | | - Create a universal variables file :: Not sure how useful this would be, but could be nice |
| | | # - Create a universal variables file :: Not sure how useful this would be, but could be nice |
| | |
| | | #A basic bash script to automate the building of arch packages |
| | | # Usage: main.sh init|add|build_all [-f force] |
| | | |
| | | REPODIR=/repo/x86_64 |
| | | BUILDDIR=/repo/build |
| | | REPONAME= |
| | | UPDATE=N |
| | | CLEAN=N |
| | | SIGN=N |
| | | KEY="" |
| | | NUM_OLD=5 |
| | | export PACKAGER="John Doe <jd@change.me>" |
| | | EMAIL="" |
| | | source vars.sh |
| | | |
| | | ERRORS="" |
| | | |
New file |
| | |
| | | REPODIR=/repo/x86_64 |
| | | BUILDDIR=/repo/build |
| | | REPONAME= |
| | | UPDATE=N |
| | | CLEAN=N |
| | | SIGN=N |
| | | KEY="" |
| | | NUM_OLD=5 |
| | | export PACKAGER="John Doe <jd@change.me>" |
| | | EMAIL="" |