Skip to content

Commit

Permalink
Add v0.3.2-1 to rockspecs and fix cloning URL
Browse files Browse the repository at this point in the history
Files changed:
- fusionscript-dev-1.rockspec
- versions/fusionscript-0.3.2-1.rockspec
  • Loading branch information
RyanSquared committed Jun 8, 2017
1 parent b86ccd5 commit eb80a3b
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fusionscript-dev-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package = "fusionscript"
version = "dev-1"

source = {
url = "git://github.com/ChickenNuggers/FusionScript.git";
url = "git://github.com/RyanSquared/fusionscript.git";
}

description = {
Expand Down
46 changes: 46 additions & 0 deletions versions/fusionscript-0.3.2-1.rockspec
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 <ryan@github.com>";
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";
}
};
}

0 comments on commit eb80a3b

Please sign in to comment.