Skip to content
Snippets Groups Projects
recipe.sh 617 B
Newer Older
Nagy Tibor's avatar
Nagy Tibor committed
VERSION=20140305
Jeremy Soller's avatar
Jeremy Soller committed
TAR="https://invisible-island.net/archives/vttest/vttest-${VERSION}.tgz"
Nagy Tibor's avatar
Nagy Tibor committed

Nagy Tibor's avatar
Nagy Tibor committed
function recipe_version {
    echo "$VERSION"
    skip=1
}

Nagy Tibor's avatar
Nagy Tibor committed
function recipe_build {
    export LDFLAGS="-static"
    wget -O config.sub "https://gitlab.redox-os.org/redox-os/gnu-config/-/raw/master/config.sub?inline=false"
    ./configure \
        --build=${BUILD} \
        --host=${HOST} \
        --prefix=''
    "$REDOX_MAKE" -j"$($NPROC)"
Nagy Tibor's avatar
Nagy Tibor committed
    skip=1
}

function recipe_clean {
    "$REDOX_MAKE" clean
Nagy Tibor's avatar
Nagy Tibor committed
    skip=1
}

function recipe_stage {
    dest="$(realpath $1)"
    "$REDOX_MAKE" DESTDIR="$dest" install
Nagy Tibor's avatar
Nagy Tibor committed
    skip=1
}