summaryrefslogtreecommitdiff
path: root/scripts/build/debug/000-template.sh
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-03-21 21:51:59 (GMT)
committerGitHub <noreply@github.com>2017-03-21 21:51:59 (GMT)
commita00978aca9dbee8bbee42a6eb433f5015626fb2b (patch)
treea60f812c07aa3f59eafd2c9fd34e212f3af3dde0 /scripts/build/debug/000-template.sh
parent80daed99de7fb7f3b7a42f8bfd169fa9a44b63f0 (diff)
parentde4433298a5e25512aee559c1cb8f1d369aea611 (diff)
Merge pull request #654 from stilor/release-mgmt
Release mgmt
Diffstat (limited to 'scripts/build/debug/000-template.sh')
-rw-r--r--scripts/build/debug/000-template.sh34
1 files changed, 0 insertions, 34 deletions
diff --git a/scripts/build/debug/000-template.sh b/scripts/build/debug/000-template.sh
deleted file mode 100644
index 47d2cae..0000000
--- a/scripts/build/debug/000-template.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-# Template file for a debug utility
-
-# Put your download code here
-do_debug_foobar_get() {
- # For example:
- # CT_GetFile "foobar-${CT_FOOBAR_VERSION}" http://foobar.com/releases/
- :
-}
-
-# Put your extract code here
-do_debug_foobar_extract() {
- # For example:
- # CT_Extract "foobar-${CT_FOOBAR_VERSION}"
- # CT_Patch "foobar" "${CT_FOOBAR_VERSION}"
- :
-}
-
-# Put your build code here
-do_debug_foobar_build() {
- # For example:
- # mkdir -p "${CT_BUILD_DIR}/build-foobar"
- # CT_Pushd "${CT_BUILD_DIR}/build-foobar"
- # CT_DoExecLog CFG \
- # "${CT_SRC_DIR}/foobar-${CT_FOOBAR_VERSION}/configure" \
- # --build=${CT_BUILD} \
- # --host=${CT_TARGET} \
- # --prefix=/usr \
- # --foobar-options
- # CT_DoExecLog ALL make
- # CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" install
- # CT_Popd
- :
-}
-