-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
763420d
commit f19d368
Showing
5 changed files
with
50 additions
and
17 deletions.
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
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
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,36 @@ | ||
-- -*- lua -*- | ||
|
||
package = "fennel" | ||
version = "0.4.0-1" | ||
source = { | ||
url = "git+https://github.com/bakpakin/Fennel", | ||
tag = "0.4.0" | ||
} | ||
description = { | ||
summary = "Lisp that compiles to Lua", | ||
detailed = [[ | ||
A lisp-like language that compiles to efficient Lua. Combine | ||
meta-programming with Lua.]], | ||
homepage = "https://fennel-lang.org/", | ||
license = "MIT" | ||
} | ||
dependencies = { | ||
"lua >= 5.1" | ||
} | ||
build = { | ||
type = "builtin", | ||
modules = { | ||
fennel = "fennel.lua", | ||
fennelview = "fennelview.lua", | ||
fennelfriend = "fennelfriend.lua" | ||
}, | ||
install = { | ||
bin = { | ||
-- use the old launcher for now; once we have a chance to mess about | ||
-- with the build we can try compiling the new launcher with the | ||
-- old; ideally during packaging time we would compile the bin/fennel | ||
-- script, but luarocks docs do not explain how to do this. | ||
fennel = "old_launcher.lua" | ||
} | ||
} | ||
} |