Skip to content

Commit

Permalink
new homepage in rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
dlaurie committed Jul 15, 2018
1 parent fd30da8 commit 8d7a56f
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions lub-1.1.0-2.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
package = "lub"
version = "1.1.0-2"
source = {
url = 'git://github.com/lubyk/lub',
tag = 'REL-1.1.0',
dir = 'lub',
}
description = {
summary = "Lubyk base module.",
detailed = [[
lub: helper code, class declaration.
lub.Autoload: autoloading classes in modules.
lub.Dir: a simple directory traversal class.
lub.Template: a simple templating class that uses {{moustache}} like syntax.
lub.Param: script parameter save/restore.
]],
homepage = "https://lubyk.github.io/lubyk/lub.html",
license = "MIT"
}

dependencies = {
"lua >= 5.1, < 5.4",
"luafilesystem >= 1.4.0",
}
build = {
type = 'builtin',
modules = {
-- Plain Lua files
['lub' ] = 'lub/init.lua',
['lub.Autoload' ] = 'lub/Autoload.lua',
['lub.Dir' ] = 'lub/Dir.lua',
['lub.Param' ] = 'lub/Param.lua',
['lub.Template' ] = 'lub/Template.lua',
},
}

0 comments on commit 8d7a56f

Please sign in to comment.