Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions sci-lang-1.0.0.beta10-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
package = "sci-lang"
version = "1.0.0.beta10-1"

source = {
url = "https://github.com/stepelu/lua-sci-lang/archive/v1.0.0-beta10.tar.gz",
dir = "lua-sci-lang-1.0.0-beta10"
}
description = {
summary = "Syntax extensions to LuaJIT for scientific computing",
detailed = "Based on the LuaJIT Language Toolkit this executable introduces extensions to the LuaJIT syntax for algebra operations.",
homepage = "http://scilua.org/",
license = "MIT"
}
dependencies = {
"lua >= 5.1, < 5.4",
"luajit >= 2.0",
"sci >= 1.0"
}
build = {
type = "builtin",
modules = {
["sci-lang.__bin.scilua"] = "__bin/scilua.lua",
["sci-lang.ast-boolean-const-eval"] = "ast-boolean-const-eval.lua",
["sci-lang.ast-const-eval"] = "ast-const-eval.lua",
["sci-lang.ast-validate"] = "ast-validate.lua",
["sci-lang.bcread"] = "bcread.lua",
["sci-lang.bcsave"] = "bcsave.lua",
["sci-lang.bytecode"] = "bytecode.lua",
["sci-lang.compile"] = "compile.lua",
["sci-lang.generator"] = "generator.lua",
["sci-lang.lexer"] = "lexer.lua",
["sci-lang.lua-ast"] = "lua-ast.lua",
["sci-lang.luacode-generator"] = "luacode-generator.lua",
["sci-lang.operator"] = "operator.lua",
["sci-lang.parser"] = "parser.lua",
["sci-lang.reader"] = "reader.lua",
["sci-lang.transform"] = "transform.lua",
["sci-lang.util"] = "util.lua"
}
}
4 changes: 4 additions & 0 deletions scilua
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env bash

#Uncomment below and edit path to scilua.lua
#luajit /path/to/__bin/scilua.lua