From 104f042ddbef56e323b61353fceeb5fd3dae5556 Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Sun, 15 Apr 2018 15:01:45 -0400 Subject: Added kernel config and many more scripts Altered scripts to allow for rebuilding wihout deleting the `build` folder. Added ncurses and vim to the build. Also added initial version of runit Still need to make sure that get_sources and distfiles are properly gathered from the script soon --- scripts/sbase.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'scripts/sbase.sh') diff --git a/scripts/sbase.sh b/scripts/sbase.sh index 749d557..cf6714a 100644 --- a/scripts/sbase.sh +++ b/scripts/sbase.sh @@ -1,7 +1,10 @@ #!/bin/sh . ./.vars export DESTDIR=$prefix -git clone --depth=1 ${dist_dir}/sbase ${build_dir}/sbase +BUILD_DIR="${build_dir}/sbase" +if ! [ -d "$BUILD_DIR" ] ; then + git clone --depth=1 ${dist_dir}/sbase "$BUILD_DIR" +fi cd $build_dir/sbase cp config.mk config.mk.bak sed \ -- cgit v1.2.3