From 9031bb7ba79022f1334b05d4d8d5caaadf775bac Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 20 Aug 2023 21:17:02 +0100 Subject: unify dependencies scripts the unified logic is so small that i simply added it to the main "build" script commands are identical. example: ./build dependencies debian Signed-off-by: Leah Rowe --- lbmk | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'lbmk') diff --git a/lbmk b/lbmk index 3f472b1e..c71b64a7 100755 --- a/lbmk +++ b/lbmk @@ -40,10 +40,13 @@ main() buildpath="./resources/scripts/${0##*/}" mode="${1}" + if [ "${mode}" = "dependencies" ]; then + install_dependencies $@ || die "Could not install dependencies" + exit 0 + fi ./.gitcheck - if [ "${mode}" != "dependencies" ]; then + [ "${mode}" != "dependencies" ] && \ ./resources/scripts/misc/versioncheck - fi if [ "${mode}" = help ]; then usage $0 exit 0 @@ -80,6 +83,19 @@ main() ./.gitcheck clean } +install_dependencies() +{ + [ -f "resources/dependencies/${2}" ] || die "Unsupported target" + + aur_notice="" + . "resources/dependencies/${2}" + + ${pkg_add} ${pkglist} || die "Error installing dependencies" + [ "${aur_notice}" != "" ] && \ + printf "You must install these AUR packages: %s\n" \ + "${aur_notice}" 1>&2 +} + # Takes exactly one mode as parameter listoptions() { -- cgit v1.2.1