From c9c11c97688f435b852336e5f4164a1f9e05da34 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sat, 16 Jun 2007 17:41:01 +0000 Subject: Add two te;plates on how to add a new tool/debug facility. diff --git a/scripts/build/debug/template.sh b/scripts/build/debug/template.sh new file mode 100644 index 0000000..784d5d8 --- /dev/null +++ b/scripts/build/debug/template.sh @@ -0,0 +1,50 @@ +# Template file for a debug utility + +# Check here wether your debug tool is enabled or not. +# This will get redefined over and over again for each tool, so don't +# count on it in the functions below. +is_enabled="${CT_FOOBAR}" + +# Small function to print the filename +# Note that this function gets redefined over and over for each tool +# It's of no use when building the toolchain proper, but shows all its +# usefullness when saving the toolchain and building the tarball. +# You shall not echo anything if you're not enabled! +# Echo the name of the file, without the extension, below. +do_print_filename() { + # For example: + # [ "${CT_FOOBAR}" = "y" ] || return 0 + # echo "foobar-${CT_FOOBAR_VERSION}" + : +} + +# 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_ExtractAndPatch "foobar-${CT_FOOBAR_VERSION}" + : +} + +# Put your build code here +do_debug_foobar_build() { + # For example: + # mkdir -p "${CT_BUIL_DIR}/build-foobar" + # CT_Pushd "${CT_BUIL_DIR}/build-foobar" + # "${CT_SRC_DIR}/foobar-${CT_FOOBAR_VERSION}/configure" \ + # --build=${CT_BUILD} \ + # --host=${CT_TARGET} \ + # --prefix=/usr \ + # --foobar-options + # make + # make DESTDIR="${CT_SYSROOT_DIR}" install + # CT_Popd + : +} + diff --git a/scripts/build/tools/template.sh b/scripts/build/tools/template.sh new file mode 100644 index 0000000..be243d2 --- /dev/null +++ b/scripts/build/tools/template.sh @@ -0,0 +1,50 @@ +# Template file for a tool utility + +# Check here wether your tool is enabled or not. +# This will get redefined over and over again for each tool, so don't +# count on it in the functions below. +is_enabled="${CT_FOOBAR}" + +# Small function to print the filename +# Note that this function gets redefined over and over again for each tool. +# It's of no use when building the toolchain proper, but shows all its +# usefullness when saving the toolchain and building the tarball. +# You shall not echo anything if you're not enabled! +# Echo the name of the file, without the extension, below. +do_print_filename() { + # For example: + # [ "{CT_FOOBAR}" = "y" ] || return 0 + # echo "foobar-${CT_FOOBAR_VERSION}" + : +} + +# 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_ExtractAndPatch "foobar-${CT_FOOBAR_VERSION}" + : +} + +# Put your build code here +do_tools_foobar_build() { + # For example: + # mkdir -p "${CT_BUIL_DIR}/build-foobar" + # CT_Pushd "${CT_BUIL_DIR}/build-foobar" + # "${CT_SRC_DIR}/foobar-${CT_FOOBAR_VERSION}/configure" \ + # --build=${CT_BUILD} \ + # --host=${CT_TARGET} \ + # --prefix=/usr \ + # --foobar-options + # make + # make DESTDIR="${CT_SYSROOT_DIR}" install + # CT_Popd + : +} + -- cgit v0.10.2-6-g49f6