From 8a7ae27c5da39f518e371166a9f9a49875e89611 Mon Sep 17 00:00:00 2001 From: Thibault Charbonnier Date: Tue, 12 Jan 2016 18:23:21 -0800 Subject: release: 0.2.0 --- lua_uuid-0.2.0-0.rockspec | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 lua_uuid-0.2.0-0.rockspec (limited to 'lua_uuid-0.2.0-0.rockspec') diff --git a/lua_uuid-0.2.0-0.rockspec b/lua_uuid-0.2.0-0.rockspec new file mode 100644 index 0000000..d95cc47 --- /dev/null +++ b/lua_uuid-0.2.0-0.rockspec @@ -0,0 +1,26 @@ +package = "lua_uuid" +version = "0.2.0-0" +source = { + url = "https://github.com/Mashape/lua-uuid/archive/0.2.0.tar.gz", + tag = "0.2.0" +} +description = { + summary = "UUID generation", + detailed = [[ + This is an utility that leverages libuuid to generate UUID strings + ]], + homepage = "https://github.com/Mashape/lua-uuid", + license = "MIT" +} +dependencies = { + "lua >= 5.1" +} +build = { + type = "builtin", + modules = { + ["lua_uuid"] = { + sources = { "lua_uuid.c" }, + libraries = { "uuid" } + } + } +} -- cgit v1.2.3-54-g00ecf