lua build added

This commit is contained in:
2014-04-23 00:32:48 +02:00
parent 0c987156c9
commit 6d67927fd1

19
scripts/lua.build Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
source "$(dirname $0)/../lib/libem.bash"
function em.configure() {
cd "${EM_SRCDIR}"
"${EM_SRCDIR}"/configure \
--prefix="${PREFIX}" \
|| exit 1
}
function em.build() {
cd "${EM_SRCDIR}"
make
}
em.set_build_dependencies "${COMPILER}"
em.make_all