summaryrefslogtreecommitdiffstats
path: root/debian/_buildscripts/local/internals/_config_template.sh
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2018-07-11 23:38:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2018-07-11 23:38:32 +0900
commiteeaccbeddbaa2974406eb20cbb7beca3fb4a59f0 (patch)
tree510e0eea682ebf69263b187287873956394b5e7b /debian/_buildscripts/local/internals/_config_template.sh
parent02dbbffa606c3c52833bbaf3dc5c5a050f295dbf (diff)
downloadtde-packaging-eeaccbeddbaa2974406eb20cbb7beca3fb4a59f0.tar.gz
tde-packaging-eeaccbeddbaa2974406eb20cbb7beca3fb4a59f0.zip
DEB build scripts: several enhancements as follow:
- major rework of update_repositories.sh script, which now supports multiple branches and provide better feedback to user. - added support for pre-built extra dependency packages. A user can now use Slavek Banko's binary packages instead of building the extra dependency locally. This removes a quite tedious process during the setup of the building environment. - bug fixes and more user friendly folder names. - improved README to cover the complete process until TDE installation. Special thanks to Gregory Guy <zadig83@laposte.net> for testing and feedback done so far. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'debian/_buildscripts/local/internals/_config_template.sh')
-rw-r--r--debian/_buildscripts/local/internals/_config_template.sh34
1 files changed, 34 insertions, 0 deletions
diff --git a/debian/_buildscripts/local/internals/_config_template.sh b/debian/_buildscripts/local/internals/_config_template.sh
new file mode 100644
index 000000000..be992d297
--- /dev/null
+++ b/debian/_buildscripts/local/internals/_config_template.sh
@@ -0,0 +1,34 @@
+#!/bin/bash
+
+set -a
+
+#----------------------------
+# Repo information
+#----------------------------
+TDE_DIR="" # TDE root folder
+UPDATE_BRANCHES="master" # Space separated list. Available choices: master, r14.0.x
+DEFAULT_REPO_BRANCH="master" # After update in completed, switch repo to this branch. Must be
+ # one of the branches specified in UPDATE_BRANCHES
+
+#----------------------------
+# Build information
+#----------------------------
+TDE_RELEASE="14.1.0" # TDE release number
+DISTRO="debian" # Distro family
+DISTRO_NAME="buster" # Distro name of specific version
+ARCHITECTURE="amd64" # Build for this architecture
+USE_PREBUILD_EXTRA_DEPS="y" # If == "y", use pre-built extra dependency packages
+BUILD_DEFAULT_OPTIONS="-g -lr" # Default building options (pbuilder)
+GPG_SIGN_KEYID="" # Use this GPG key to sign packages. If null, packages will not be signed
+
+#----------------------------
+# Base directories
+#----------------------------
+CFG_SCRIPT_LOG_DIR="0_logs"
+CFG_GIT_DIR="1_git"
+CFG_BUILD_DIR="2_build"
+CFG_REPO_DIR="3_repo"
+CFG_EXTRA_DEPS_DIR="edeps" # Relative to CFG_GIT_DIR folder
+CFG_HOOKS_DIR="hooks" # Relative to CFG_GIT_DIR folder
+
+set +a