Skip to content

Commit

Permalink
update rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
EvandroLG committed Sep 16, 2020
1 parent 21d46a6 commit 495bfd2
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions rockspecs/pegasus-0.9.6-0.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
package = 'pegasus'
version = '0.9.6-0'

source = {
url = 'git://github.com/evandrolg/pegasus.lua.git',
tag = 'v0.9.6'
}

description = {
summary = 'Pegasus.lua is an http server to work with web applications written in Lua language.',
homepage = 'https://github.com/EvandroLG/pegasus.lua',
maintainer = 'Evandro Leopoldino Gonçalves (@evandrolg) <evandrolgoncalves@gmail.com>',
license = 'MIT <http://opensource.org/licenses/MIT>'
}

dependencies = {
"lua >= 5.1",
"mimetypes >= 1.0.0-1",
"luasocket >= 0.1.0-0",
"luafilesystem >= 1.6",
"lzlib >= 0.4.1.53-1",
}

build = {
type = "builtin",
modules = {
['pegasus.init'] = "src/pegasus/init.lua",
['pegasus.handler'] = 'src/pegasus/handler.lua',
['pegasus.request'] = 'src/pegasus/request.lua',
['pegasus.response'] = 'src/pegasus/response.lua',
['pegasus.compress'] = 'src/pegasus/compress.lua'
}
}

0 comments on commit 495bfd2

Please sign in to comment.