scripts/build/tools/template.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jul 28 21:34:41 2007 +0000 (2007-07-28)
changeset 301 2be7232a73ac
parent 156 0b7096103d95
permissions -rw-r--r--
Bump version to 0.2.2.
     1 # Template file for a tool utility
     2 
     3 # Check here wether your 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 again 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_tools_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_tools_foobar_extract() {
    30     # For example:
    31     # CT_ExtractAndPatch "foobar-${CT_FOOBAR_VERSION}"
    32     :
    33 }
    34 
    35 # Put your build code here
    36 do_tools_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