Skip to content

Commit

Permalink
rocks: add rockspec for 0.2.0
Browse files Browse the repository at this point in the history
The rockspec for 0.1.0 is there, so, it seems, I should add the new one
as well. At least for consistency.
  • Loading branch information
Totktonada committed Oct 16, 2021
1 parent 350b8e6 commit fa9b4df
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions luagraphqlparser-0.2.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package = 'luagraphqlparser'
version = '0.2.0-1'

source = {
url = 'git://github.com/tarantool/luagraphqlparser.git';
tag = '0.2.0';
}

description = {
summary = "Lua graphql parser";
detailed = [[
Lua port of libgraphqlparser
]];
homepage = 'https://github.com/tarantool/luagraphqlparser.git';
maintainer = "Oleg Babin <[email protected]>";
license = 'BSD2';
}

dependencies = {
'lua == 5.1';
}

build = {
type = 'cmake';
variables = {
CMAKE_BUILD_TYPE="RelWithDebInfo";
TARANTOOL_DIR="$(TARANTOOL_DIR)";
TARANTOOL_INSTALL_LIBDIR="$(LIBDIR)";
TARANTOOL_INSTALL_LUADIR="$(LUADIR)";
};
}
-- vim: syntax=lua ts=4 sts=4 sw=4 et

0 comments on commit fa9b4df

Please sign in to comment.