scripts/build/debug/000-template.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Mar 06 13:27:40 2009 +0000 (2009-03-06)
changeset 1238 73c8b86a05b1
parent 1112 c72aecd1a9ef
child 1901 bdb3a98e064b
permissions -rw-r--r--
Fix extracting/patching DUMA:
- DUMA uses an underscore between the name and version, not a dash.

/trunk/scripts/build/debug/200-duma.sh | 1 1 0 0 +
1 file changed, 1 insertion(+)
     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 ALL                                        \
    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