-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
1 parent
350b8e6
commit fa9b4df
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |