Skip to content

Commit

Permalink
Add a v3 rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffleyland committed Sep 6, 2016
1 parent 2c4449a commit 6f40567
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions rockspecs/mmapfile-3-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
package = "mmapfile"
version = "3-1"
source =
{
url = "git://github.com/geoffleyland/lua-mmapfile.git",
branch = "master",
tag = "v3",
}
description =
{
summary = "Simple memory-mapped files",
homepage = "http://github.com/geoffleyland/lua-mmapfile",
license = "MIT/X11",
maintainer = "Geoff Leyland <geoff.leyland@incremental.co.nz>"
}
dependencies =
{
'lua == 5.1', -- should be "luajit >= 2.0.0"
platforms =
{
linux = { 'ljsyscall >= 0.9' },
macosx = { 'ljsyscall >= 0.9' },
}
}
build =
{
type = "builtin",
modules =
{
mmapfile = "src-lua/mmapfile.lua",
["mmapfile.unix"] = "src-lua/mmapfile/unix.lua",
["mmapfile.windows"] = "src-lua/mmapfile/windows.lua",
},
}

0 comments on commit 6f40567

Please sign in to comment.