File tree Expand file tree Collapse file tree 2 files changed +47
-1
lines changed Expand file tree Collapse file tree 2 files changed +47
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package = "fusionscript"
2
2
version = " dev-1"
3
3
4
4
source = {
5
- url = " git://github.com/ChickenNuggers/FusionScript .git" ;
5
+ url = " git://github.com/RyanSquared/fusionscript .git" ;
6
6
}
7
7
8
8
description = {
Original file line number Diff line number Diff line change
1
+ package = " fusionscript"
2
+ version = " 0.3.2-1"
3
+
4
+ source = {
5
+ url = " git://github.com/RyanSquared/fusionscript.git" ;
6
+ }
7
+
8
+ description = {
9
+ summary = " A Lua compilable language based on C and Python" ;
10
+ maintainer = " Ryan <ryan@github.com>" ;
11
+ license = " MIT" ;
12
+ }
13
+
14
+ dependencies = {
15
+ " lua >= 5.1" ;
16
+ " lpeg >= 1.0" ;
17
+ " luafilesystem" ;
18
+ " serpent" ;
19
+ }
20
+
21
+ local default = " source"
22
+
23
+ build = {
24
+ type = " builtin" ;
25
+ modules = {
26
+ [" fusion.stdlib.functional" ] = " fusion/stdlib/functional.lua" ;
27
+ [" fusion.stdlib.table" ] = " fusion/stdlib/table.lua" ;
28
+ [" fusion.stdlib.iterable" ] = " fusion/stdlib/iterable.lua" ;
29
+ [" fusion.stdlib.ternary" ] = " fusion/stdlib/ternary.lua" ;
30
+ [" fusion.stdlib.class" ] = " fusion/stdlib/class.lua" ;
31
+ [" fusion.core.compilers.source" ] = " fusion/core/compilers/source.lua" ;
32
+ [" fusion.core.parser" ] = " fusion/core/parser.lua" ;
33
+ [" fusion.util" ] = " fusion/util.lua" ;
34
+ };
35
+ install = {
36
+ bin = {
37
+ [" fusion-ast" ] = " bin/util/ast.lua" ;
38
+ [" fusion-lint" ] = " bin/util/linter.lua" ;
39
+ [" fusion-pkg" ] = " bin/util/pkg.lua" ;
40
+ [" fusion" ] = (" bin/interpreter/%s.lua" ):format (default );
41
+ [" fusionc" ] = (" bin/compiler/%s.lua" ):format (default );
42
+ [" fusion-source" ] = " bin/interpreter//source.lua" ;
43
+ [" fusionc-source" ] = " bin/compiler/source.lua" ;
44
+ }
45
+ };
46
+ }
You can’t perform that action at this time.
0 commit comments