From ce3dac39ca7afea9ac41c8328da35e7d55612f25 Mon Sep 17 00:00:00 2001 From: RepentantGopher Date: Thu, 6 Jun 2019 23:30:22 +0300 Subject: [PATCH] Added rockspec fo 1.0.0 release --- rockspecs/kafka-1.0.0-1.rockspec | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 rockspecs/kafka-1.0.0-1.rockspec diff --git a/rockspecs/kafka-1.0.0-1.rockspec b/rockspecs/kafka-1.0.0-1.rockspec new file mode 100644 index 0000000..e99ceda --- /dev/null +++ b/rockspecs/kafka-1.0.0-1.rockspec @@ -0,0 +1,29 @@ +package = "kafka" +version = "1.0.0-1" +source = { + url = "git://github.com/tarantool/tnt-kafka.git", + tag = "v1.0.0", +} +description = { + summary = "Kafka library for Tarantool", + homepage = "https://github.com/tarantool/tnt-kafka", + license = "Apache", +} +dependencies = { + "lua >= 5.1" -- actually tarantool > 1.6 +} +external_dependencies = { + TARANTOOL = { + header = 'tarantool/module.h' + } +} +build = { + type = 'cmake'; + variables = { + CMAKE_BUILD_TYPE="RelWithDebInfo", + TARANTOOL_DIR="$(TARANTOOL_DIR)", + TARANTOOL_INSTALL_LIBDIR="$(LIBDIR)", + TARANTOOL_INSTALL_LUADIR="$(LUADIR)", + STATIC_BUILD="$(STATIC_BUILD)" + } +}