summaryrefslogtreecommitdiffstats
path: root/debian/_buildscripts/local/scripts/internals/_config_template.sh
blob: ea8f438bac74f2d1e70d81a143a23fdbe6a98657 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/bash
set -a

#----------------------------
# 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_LOCAL_BUILD_NUMBER="n"  	  # If == "y", use local build numbering for modules
BUILD_NUMBER="b001"             # TDE build number
BUILD_DATE=""                   # Module build date (automatic if "" or fixed otherwise, ex 20171201)
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
#----------------------------
# TDE root folder
TDE_DIR=""
# Relative paths
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
# Composite paths
CFG_GIT_TDE_MAIN="$CFG_GIT_DIR/tde/main"
CFG_GIT_TDE_PACKAGING="$CFG_GIT_DIR/tde-packaging/$DISTRO/$DISTRO_NAME"
CFG_GIT_EXTRA_DEPENDENCIES="$CFG_GIT_DIR/$CFG_EXTRA_DEPS_DIR"
CFG_HOOK_DIR="$CFG_GIT_DIR/$CFG_HOOKS_DIR"

#----------------------------
# Build output directories
#----------------------------
CFG_TDE_BUILD_DIR="$CFG_BUILD_DIR/build"
CFG_TDE_DEBS_DIR="$CFG_BUILD_DIR/debs"

#----------------------------
set +a