git.m455.casa

fa

clone url: git://git.m455.casa/fa


esperbuild/espersrc/fennel-0.7.0/rockspecs/fennel-0.4.0-1.rockspec

1 -- -*- lua -*-
2
3 package = "fennel"
4 version = "0.4.0-1"
5 source = {
6 url = "git+https://github.com/bakpakin/Fennel",
7 tag = "0.4.0"
8 }
9 description = {
10 summary = "Lisp that compiles to Lua",
11 detailed = [[
12 A lisp-like language that compiles to efficient Lua. Combine
13 meta-programming with Lua.]],
14 homepage = "https://fennel-lang.org/",
15 license = "MIT"
16 }
17 dependencies = {
18 "lua >= 5.1"
19 }
20 build = {
21 type = "builtin",
22 modules = {
23 fennel = "fennel.lua",
24 fennelview = "fennelview.lua",
25 fennelfriend = "fennelfriend.lua"
26 },
27 install = {
28 bin = {
29 -- use the old launcher for now; once we have a chance to mess about
30 -- with the build we can try compiling the new launcher with the
31 -- old; ideally during packaging time we would compile the bin/fennel
32 -- script, but luarocks docs do not explain how to do this.
33 fennel = "old_launcher.lua"
34 }
35 }
36 }