mirror of
https://github.com/TangentFoxy/etlua.git
synced 2025-07-28 02:52:17 +00:00
26 lines
372 B
Lua
26 lines
372 B
Lua
package = "elua"
|
|
version = "dev-1"
|
|
|
|
source = {
|
|
url = "git://github.com/leafo/elua.git"
|
|
}
|
|
|
|
description = {
|
|
summary = "Embedded templates for Lua",
|
|
homepage = "https://github.com/leafo/elua",
|
|
maintainer = "Leaf Corcoran <leafot@gmail.com>",
|
|
license = "MIT"
|
|
}
|
|
|
|
dependencies = {
|
|
"lua >= 5.1",
|
|
}
|
|
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
["elua"] = "elua.lua",
|
|
},
|
|
}
|
|
|