lua.sh 404 B

1234567891011121314
  1. #!/bin/bash
  2. RETCODE=$(fw_exists ${IROOT}/lua5.1.installed)
  3. [ ! "$RETCODE" == 0 ] || { return 0; }
  4. # Eventually, we should also install lua5.2 and luajit
  5. #
  6. # At the moment they seem to cause issues with lapis
  7. # being able to compile. Since no Lua test is using
  8. # either luajit or lua5.2 at the moment I have just
  9. # left them out
  10. sudo apt-get install -y lua5.1 luarocks
  11. touch ${IROOT}/lua5.1.installed