Skip to content
Snippets Groups Projects
Commit f57cd8df authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Merge branch 'ids1024-lua'

parents c20fed78 81422ff2
No related branches found
No related tags found
No related merge requests found
build build
repo repo
source
source.tar
stage stage
stage.tar stage.tar
...@@ -48,19 +48,45 @@ function op { ...@@ -48,19 +48,45 @@ function op {
op $1 unfetch op $1 unfetch
;; ;;
fetch) fetch)
if [ ! -d build ] if [ -n "$TAR" ]
then then
git clone --recursive "$GIT" build if [ ! -f source.tar ]
then
wget "$TAR" -O source.tar
fi
if [ ! -d source ]
then
mkdir source
tar xvf source.tar -C source --strip-components 1
fi
rm -rf build
cp -r source build
elif [ -n "$GIT" ]
then
if [ ! -d source ]
then
git clone --recursive "$GIT" source
fi
pushd source > /dev/null
git pull
git submodule sync
git submodule update --init --recursive
popd > /dev/null
rm -rf build
cp -r source build
fi fi
pushd build > /dev/null
git pull
git submodule sync
git submodule update --init --recursive
popd > /dev/null
;; ;;
unfetch) unfetch)
rm -rfv build rm -rfv build source
if [ -n "$TAR" ]
then
rm -f source.tar
fi
;; ;;
version) version)
pushd build > /dev/null pushd build > /dev/null
......
VERSION=5.3.1
TAR=http://www.lua.org/ftp/lua-$VERSION.tar.gz
function recipe_version {
echo "$VERSION"
return 1
}
function recipe_update {
echo "skipping update"
return 1
}
function recipe_build {
make generic CC="$CC -std=gnu99"
return 1
}
function recipe_test {
echo "skipping test"
return 1
}
function recipe_clean {
make clean
return 1
}
function recipe_stage {
mkdir -pv "$1/bin"
cp src/lua src/luac "$1/bin"
return 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