summaryrefslogtreecommitdiff
path: root/scripts/build/tools/000-template.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build/tools/000-template.sh')
-rw-r--r--scripts/build/tools/000-template.sh34
1 files changed, 0 insertions, 34 deletions
diff --git a/scripts/build/tools/000-template.sh b/scripts/build/tools/000-template.sh
deleted file mode 100644
index 032f289..0000000
--- a/scripts/build/tools/000-template.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-# Template file for a tool utility
-
-# Put your download code here
-do_tools_foobar_get() {
- # For example:
- # CT_GetFile "foobar-${CT_FOOBAR_VERSION}" http://foobar.com/releases/
- :
-}
-
-# Put your extract code here
-do_tools_foobar_extract() {
- # For example:
- # CT_Extract "foobar-${CT_FOOBAR_VERSION}"
- # CT_Patch "foobar-${CT_FOOBAR_VERSION}"
- :
-}
-
-# Put your build code here
-do_tools_foobar_build() {
- # For example:
- # mkdir -p "${CT_BUILD_DIR}/build-foobar"
- # CT_Pushd "${CT_BUILD_DIR}/build-foobar"
- # CT_DoExecLog ALL \
- # "${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
- :
-}
-