scripts/build/tools/000-template.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu May 21 19:00:55 2009 +0000 (2009-05-21)
branchgcc-4.4
changeset 1368 ec1cffe6d30b
parent 1112 c72aecd1a9ef
permissions -rw-r--r--
/devel/gcc-4.4:
- trivial spelling fix in TODO

-------- diffstat follows --------
/devel/gcc-4.4/TODO | 2 1 1 0 +-
1 file changed, 1 insertion(+), 1 deletion(-)
     1 # Template file for a tool utility
     2 
     3 # Put your download code here
     4 do_tools_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_tools_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_tools_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