Skip to content
Snippets Groups Projects
Commit 0ab0a117 authored by Nagy Tibor's avatar Nagy Tibor
Browse files

Add duktape recipe

parent 282bd44e
No related branches found
No related tags found
1 merge request!135Add duktape recipe
VERSION=2.2.0
TAR=http://duktape.org/duktape-$VERSION.tar.xz
function recipe_version {
echo "$VERSION"
skip=1
}
function recipe_update {
echo "skipping update"
skip=1
}
function recipe_build {
sed -i "s/= gcc/= $TARGET-gcc/g" Makefile.cmdline
make -f Makefile.cmdline
skip=1
}
function recipe_test {
echo "skipping test"
skip=1
}
function recipe_clean {
make clean
skip=1
}
function recipe_stage {
mkdir -pv "$1/bin"
cp ./duk "$1/bin/duk"
skip=1
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment