summaryrefslogtreecommitdiff
path: root/bin/lb
diff options
context:
space:
mode:
Diffstat (limited to 'bin/lb')
-rwxr-xr-xbin/lb73
1 files changed, 73 insertions, 0 deletions
diff --git a/bin/lb b/bin/lb
new file mode 100755
index 000000000..2f2320308
--- /dev/null
+++ b/bin/lb
@@ -0,0 +1,73 @@
+#!/bin/sh
+
+## live-build(7) - System Build Scripts
+## Copyright (C) 2006-2012 Daniel Baumann <daniel@debian.org>
+##
+## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
+## This is free software, and you are welcome to redistribute it
+## under certain conditions; see COPYING for details.
+
+
+set -e
+
+# Including common functions
+. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+
+# Setting static variables
+DESCRIPTION="$(Echo 'utility to build Debian Live systems')"
+HELP="FIXME"
+USAGE="FIXME"
+
+case "${1}" in
+ -h|--help)
+ if [ -x "$(which man 2>/dev/null)" ]
+ then
+ man lb
+ exit 0
+ else
+ ${0} --usage
+ exit 0
+ fi
+ ;;
+
+ ""|-u|--usage)
+ Usage
+ ;;
+
+ -v|--version)
+ echo "${VERSION}"
+ exit 0
+ ;;
+
+ *)
+ COMMAND="lb_${1}"
+ shift
+
+ ENV=""
+
+ for _FILE in config/environment config/environment.binary
+ do
+ if [ -e "${_FILE}" ]
+ then
+ ENV="${ENV} $(grep -v '^#' ${_FILE})"
+ fi
+ done
+
+ if [ -x "${LB_BASE}/scripts/build/${COMMAND}" ]
+ then
+ SCRIPT="${LB_BASE}/scripts/build/${COMMAND}"
+ elif [ -x /usr/share/live/build/scripts/build/${COMMAND} ]
+ then
+ SCRIPT=/usr/share/live/build/scripts/build/"${COMMAND}"
+ elif [ -x "$(which ${COMMAND} 2>/dev/null)" ]
+ then
+ SCRIPT="${COMMAND}"
+ else
+ Echo_error "no such script: ${COMMAND}"
+ exit 1
+ fi
+
+ Echo "[%s] %s" "$(date +'%F %T')" "${COMMAND} ${*}"
+ LB=1 ${ENV} exec "${SCRIPT}" "${@}"
+ ;;
+esac