arch/build-pkg.sh

58 lines
1.0 KiB
Bash
Raw Normal View History

#!/bin/bash
function build-pkg() {
# $1: package-name
local PKG
PKG="$1"
# check if PKGBUILD exists, otherwise skip
[ -f "pkg/${PKG}/PKGBUILD" ] || {
echo "Package ${PKG} does not contain a PKGBUILD file - skipping it!"; return 0;
}
2021-04-29 14:52:03 +02:00
cd "pkg/${PKG}" || return $?
2021-04-29 14:52:03 +02:00
# build and copy to /home/custompkgs
aur build -c || return $?
## build
# makepkg -Ccsr || return $?
## copy to /home/custompkgs
# cp "${PKG}-"*.pkg.tar.zst /home/custompkgs/ || return $?
cd ../.. || return $?
}
2021-04-29 14:52:03 +02:00
function build-all() {
for PKG in pkg/*; do
2021-04-29 14:52:03 +02:00
build-pkg "$(basename "${PKG}")" || return $?
done
}
function main() {
# usage:
# either zero arguments to build all packages
# or the names of the packages to build as arguments
if [ "$#" -gt "0" ]; then
# at least one argument is given
for PKG in "$@"; do
build-pkg "$PKG" || return $?
done
else
# no arguments given
build-all || return $?
fi
# push remote repository
arch-repo-push-new || exit
}
main "$@"