git.m455.casa

fa

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


esperbuild/espersrc/fennel-0.7.0/rockspecs/fennel-scm-2.rockspec

1 package = "fennel"
2 version = "scm-2"
3 source = {
4 url = "git://github.com/bakpakin/Fennel"
5 }
6 description = {
7 summary = "Lisp that compiles to Lua",
8 detailed = [[
9 A lisp-like language that compiles to efficient Lua. Combine
10 meta-programming with Lua.]],
11 homepage = "https://fennel-lang.org/",
12 license = "MIT"
13 }
14 dependencies = {
15 "lua >= 5.1"
16 }
17 build = {
18 type = "make",
19 build_variables = {
20 -- Warning: variable CFLAGS was not passed in build_variables
21 CFLAGS = "$(CFLAGS)",
22 LUA = "$(LUA)",
23 },
24 install_variables = {
25 PREFIX = "$(PREFIX)",
26 BINDIR = "$(BINDIR)",
27 LUADIR = "$(LUADIR)",
28 },
29 }