scripts/build/debug/000-template.sh
author Anthony Foiani <anthony.foiani@gmail.com>
Fri Oct 22 22:02:57 2010 +0200 (2010-10-22)
changeset 2154 250cdcc86441
parent 1901 bdb3a98e064b
permissions -rw-r--r--
scripts: add "FILE" and "CFG" debug levels.

I ran into some minor difficulties looking through the build log for a
particular file: I wasn't interested in seeing it unpacked, but only
when it is built or installed. Adding these two levels allows me to
differentiate between those cases.

[Yann E. MORIN: Those are blind log levels, and are used only to search
in the build-log afterward.]

Signed-off-by: Anthony Foiani <anthony.foiani@gmail.com>
     1 # Template file for a debug utility
     2 
     3 # Put your download code here
     4 do_debug_foobar_get() {
     5     # For example:
     6     # CT_GetFile "foobar-${CT_FOOBAR_VERSION}" http://foobar.com/releases/
     7     :
     8 }
     9 
    10 # Put your extract code here
    11 do_debug_foobar_extract() {
    12     # For example:
    13     # CT_Extract "foobar-${CT_FOOBAR_VERSION}"
    14     # CT_Patch "foobar" "${CT_FOOBAR_VERSION}"
    15     :
    16 }
    17 
    18 # Put your build code here
    19 do_debug_foobar_build() {
    20     # For example:
    21     # mkdir -p "${CT_BUILD_DIR}/build-foobar"
    22     # CT_Pushd "${CT_BUILD_DIR}/build-foobar"
    23     # CT_DoExecLog CFG                                        \
    24     # "${CT_SRC_DIR}/foobar-${CT_FOOBAR_VERSION}/configure"   \
    25     #     --build=${CT_BUILD}                                 \
    26     #     --host=${CT_TARGET}                                 \
    27     #     --prefix=/usr                                       \
    28     #     --foobar-options
    29     # CT_DoExecLog ALL make
    30     # CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" install
    31     # CT_Popd
    32     :
    33 }
    34