diff --git a/justfile b/justfile index 33cafb3..849a5a6 100644 --- a/justfile +++ b/justfile @@ -15,11 +15,15 @@ all: @echo "Using {{PACKAGE_FILE}} file" just clone for pkg in `cat {{PACKAGE_FILE}}`; do \ - just makepkg_flags={{makepkg_flags}} build $pkg; \ - just pkgcheck $pkg; \ - just pkgsdir={{pkgsdir}} copy $pkg; \ + just single $pkg; \ done +single target: + just build {{target}} + just makepkg_flags={{makepkg_flags}} build {{target}} + just pkgcheck {{target}} + just pkgsdir={{pkgsdir}} copy {{target}} + build target: @echo "Building {{target}}" cd {{target}} && makepkg -s --noconfirm {{makepkg_flags}}