Skip to content

Commit

Permalink
rockspec for version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FSMaxB committed Feb 17, 2016
1 parent 132a4a8 commit 94dbae4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions liluat-1.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package = "liluat"
version = "1.0-1"

source = {
url = "git://github.com/FSMaxB/liluat",
tag = "v1.0"
}

description = {
summary = "Lightweight Lua based template engine.",
detailed = "Liluat is a lightweight Lua based template engine. While simple to use it's still powerfull because you can embed arbitrary Lua code in templates. It doesn't need external dependencies other than Lua itself.",
homepage = "https://github.com/FSMaxB/liluat",
license = "MIT <http://opensource.org/licenses/MIT>"
}

dependencies = {
"lua >= 5.1"
}

build = {
type = "builtin",
modules = {
liluat = "liluat.lua"
},
install = {
bin = {
runliluat = "runliluat.lua"
}
}
}

0 comments on commit 94dbae4

Please sign in to comment.