Skip to content

Commit

Permalink
Add. rockspec for version 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
moteus committed Aug 16, 2016
1 parent f1e10fb commit ea2e3b2
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
38 changes: 38 additions & 0 deletions rockspecs/gntp-0.1.2-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
package = "gntp"
version = "0.1.2-1"

source = {
url = "https://github.com/moteus/lua-gntp/archive/v0.1.2.zip",
dir = "lua-gntp-0.1.2",
}

description = {
summary = "Implementation of Growl Notify Transport Protocol (GNTP) for Lua.",
homepage = "https://github.com/moteus/lua-gntp",
license = "MIT/X11",
maintainer = "Alexey Melnichuk",
detailed = [[
]],
}

dependencies = {
"lua >= 5.1, < 5.4",
-- "openssl",
-- "luacrypto",
-- "luasocket",
-- "lluv",
}

build = {
copy_directories = {'examples', 'test'},

type = "builtin",

modules = {
[ "gntp" ] = "src/lua/gntp.lua",
[ "gntp.utils" ] = "src/lua/gntp/utils.lua",
[ "gntp.crypto" ] = "src/lua/gntp/crypto.lua",
[ "gntp.connector.lluv" ] = "src/lua/gntp/connector/lluv.lua",
[ "gntp.connector.luasocket" ] = "src/lua/gntp/connector/luasocket.lua",
}
}
2 changes: 1 addition & 1 deletion src/lua/gntp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ local crypto = require "gntp.crypto"

local GNTP = {
_NAME = "gntp";
_VERSION = "0.1.2-dev";
_VERSION = "0.1.2";
_COPYRIGHT = "Copyright (C) 2015-2016 Alexey Melnichuk";
_LICENSE = "MIT";
}
Expand Down

0 comments on commit ea2e3b2

Please sign in to comment.