summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/tup/setup-hook.sh
blob: 6116e207ac43b3bd5bd0ad5d20742e48824003bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh

tupConfigurePhase() {
    runHook preConfigure

    echo -n CONFIG_TUP_ARCH= >> tup.config
    case "$system" in
    "i686-*")      echo i386 >> tup.config;;
    "x86_64-*")    echo x86_64 >> tup.config;;
    "powerpc-*")   echo powerpc >> tup.config;;
    "powerpc64-*") echo powerpc64 >> tup.config;;
    "ia64-*")      echo ia64 >> tup.config;;
    "alpha-*")     echo alpha >> tup.config;;
    "sparc-*")     echo sparc >> tup.config;;
    "aarch64-*")   echo arm64 >> tup.config;;
    "arm*")        echo arm >> tup.config;;
    esac

    echo "${tupConfig-}" >> tup.config

    tup init
    tup generate --verbose tupBuild.sh

    runHook postConfigure
}

if [ -z "${dontUseTupConfigure-}" -a -z "${configurePhase-}" ]; then
    configurePhase=tupConfigurePhase
fi


tupBuildPhase() {
    runHook preBuild

    pushd .
    ./tupBuild.sh
    popd

    runHook postBuild
}

if [ -z "${dontUseTupBuild-}" -a -z "${buildPhase-}" ]; then
    buildPhase=tupBuildPhase
fi