Skip to content

Commit

Permalink
Update LuaJIT to v2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
paradust7 authored and sfan5 committed May 15, 2022
1 parent 5a92b84 commit 5611483
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions scripts/LuaJIT.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
#!/bin/bash -e
ver=2.1.0-beta3

repo=https://luajit.org/git/luajit.git
rev=91bc6b8ad1f373c1ce9003dc024b2e21fad0e444

download () {
get_tar_archive LuaJIT "https://luajit.org/download/LuaJIT-${ver}.tar.gz"
if [ ! -d LuaJIT/.git ]; then
rm -rf LuaJIT
git clone $repo LuaJIT
pushd LuaJIT
git checkout $rev
popd
fi
}

build () {
Expand Down

0 comments on commit 5611483

Please sign in to comment.