#!/bin/zsh
DO=$0
main() {
	args build_dir fstab= sabotage_url=https://github.com/sabotage-linux/sabotage
	depend git-fetch url:sabotage_url repo_path:
	
	fresh-build-dir
	eval $(getvars)

	git clone --depth=1 $repo_path $build_dir/src \
		|| die "failed to set up packages"
}
. ./common.zsh
# vim: fileencoding=utf8 ft=zsh noet sw=4 ts=4 sts=4