scripts/build/debug/000-template.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jun 30 20:37:14 2008 +0000 (2008-06-30)
changeset 635 0d7348cb7faa
child 664 6d151993e980
permissions -rw-r--r--
Newer, better, tsocks(1)-like wrapper script for D.U.M.A.

/trunk/scripts/build/debug/duma.in | 44 44 0 0 ++++++++++++++++++++++++++++++++++++++++
/trunk/scripts/build/debug/200-duma.sh | 12 3 9 0 +++--------
2 files changed, 47 insertions(+), 9 deletions(-)
     1 # Template file for a debug utility
     2 
     3 # Check here wether your debug tool is enabled or not.
     4 # This will get redefined over and over again for each tool, so don't
     5 # count on it in the functions below.
     6 is_enabled="${CT_FOOBAR}"
     7 
     8 # Small function to print the filename
     9 # Note that this function gets redefined over and over for each tool
    10 # It's of no use when building the toolchain proper, but shows all its
    11 # usefullness when saving the toolchain and building the tarball.
    12 # You shall not echo anything if you're not enabled!
    13 # Echo the name of the file, without the extension, below.
    14 do_print_filename() {
    15     # For example:
    16     # [ "${CT_FOOBAR}" = "y" ] || return 0
    17     # echo "foobar-${CT_FOOBAR_VERSION}"
    18     :
    19 }
    20 
    21 # Put your download code here
    22 do_debug_foobar_get() {
    23     # For example:
    24     # CT_GetFile "foobar-${CT_FOOBAR_VERSION}" http://foobar.com/releases/
    25     :
    26 }
    27 
    28 # Put your extract code here
    29 do_debug_foobar_extract() {
    30     # For example:
    31     # CT_ExtractAndPatch "foobar-${CT_FOOBAR_VERSION}"
    32     :
    33 }
    34 
    35 # Put your build code here
    36 do_debug_foobar_build() {
    37     # For example:
    38     # mkdir -p "${CT_BUILD_DIR}/build-foobar"
    39     # CT_Pushd "${CT_BUILD_DIR}/build-foobar"
    40     # "${CT_SRC_DIR}/foobar-${CT_FOOBAR_VERSION}/configure"   \
    41     #     --build=${CT_BUILD}                                 \
    42     #     --host=${CT_TARGET}                                 \
    43     #     --prefix=/usr                                       \
    44     #     --foobar-options
    45     # make
    46     # make DESTDIR="${CT_SYSROOT_DIR}" install
    47     # CT_Popd
    48     :
    49 }
    50