forked from bakpakin/Fennel
-
Notifications
You must be signed in to change notification settings - Fork 0
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
afc59a5
commit f04dfaa
Showing
5 changed files
with
51 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
-- -*- lua -*- | ||
|
||
package = "fennel" | ||
version = "0.9.0-1" | ||
source = { | ||
-- use URL to a pre-built release archive so the standalone launcher can be used | ||
url = "https://fennel-lang.org/downloads/fennel-0.9.0.tar.gz", | ||
} | ||
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", | ||
}, | ||
install = { | ||
bin = { | ||
fennel = "fennel" | ||
}, | ||
} | ||
} |
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