-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add v0.3.2-1 to rockspecs and fix cloning URL
Files changed: - fusionscript-dev-1.rockspec - versions/fusionscript-0.3.2-1.rockspec
- Loading branch information
1 parent
b86ccd5
commit eb80a3b
Showing
2 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package = "fusionscript" | ||
version = "0.3.2-1" | ||
|
||
source = { | ||
url = "git://github.com/RyanSquared/fusionscript.git"; | ||
} | ||
|
||
description = { | ||
summary = "A Lua compilable language based on C and Python"; | ||
maintainer = "Ryan <[email protected]>"; | ||
license = "MIT"; | ||
} | ||
|
||
dependencies = { | ||
"lua >= 5.1"; | ||
"lpeg >= 1.0"; | ||
"luafilesystem"; | ||
"serpent"; | ||
} | ||
|
||
local default = "source" | ||
|
||
build = { | ||
type = "builtin"; | ||
modules = { | ||
["fusion.stdlib.functional"] = "fusion/stdlib/functional.lua"; | ||
["fusion.stdlib.table"] = "fusion/stdlib/table.lua"; | ||
["fusion.stdlib.iterable"] = "fusion/stdlib/iterable.lua"; | ||
["fusion.stdlib.ternary"] = "fusion/stdlib/ternary.lua"; | ||
["fusion.stdlib.class"] = "fusion/stdlib/class.lua"; | ||
["fusion.core.compilers.source"] = "fusion/core/compilers/source.lua"; | ||
["fusion.core.parser"] = "fusion/core/parser.lua"; | ||
["fusion.util"] = "fusion/util.lua"; | ||
}; | ||
install = { | ||
bin = { | ||
["fusion-ast"] = "bin/util/ast.lua"; | ||
["fusion-lint"] = "bin/util/linter.lua"; | ||
["fusion-pkg"] = "bin/util/pkg.lua"; | ||
["fusion"] = ("bin/interpreter/%s.lua"):format(default); | ||
["fusionc"] = ("bin/compiler/%s.lua"):format(default); | ||
["fusion-source"] = "bin/interpreter//source.lua"; | ||
["fusionc-source"] = "bin/compiler/source.lua"; | ||
} | ||
}; | ||
} |