Skip to content

Commit

Permalink
Merge pull request #4 from mtourne/master
Browse files Browse the repository at this point in the history
Adding a rockspec file to install msgpack module using luarocks
  • Loading branch information
kengonakajima committed Nov 13, 2012
2 parents 2e5225f + 15042c2 commit 9400698
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions rockspec/lua-msgpack-native-scm-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package = "lua-msgpack-native"
version = "scm-1"
source = {
url = "https://github.com/kengonakajima/lua-msgpack-native.git",
branch = "master"
}
description = {
summary = "Faster implementation of MessagePack for Lua runtime",
homepage = "http://github.com/kengonakajima/lua-msgpack-native",
license = "Apache",
maintainer = "Kengo Nakajima"
}
dependencies = {
"lua >= 5.1"
}
build = {
type = "builtin",
modules = {
msgpack = {
sources = {
"mp.c",
}
}
}
}

0 comments on commit 9400698

Please sign in to comment.