diff --git a/rockspecs/semver-1.1.0-1.rockspec b/rockspecs/semver-1.1.0-1.rockspec new file mode 100644 index 0000000..0e67c9c --- /dev/null +++ b/rockspecs/semver-1.1.0-1.rockspec @@ -0,0 +1,25 @@ +package = "semver" +version = "1.1.0-1" +source = { + url = "git://github.com/kikito/semver.lua.git", +} +description = { + summary = "An implementation of semantic versioning (semver.org) in Lua", + detailed = [[ + See details in http://semver.org + ]], + license = "MIT", + homepage = "https://github.com/kikito/semver.lua" +} +dependencies = { + "lua >= 5.1" +} + +build = { + type = "none", + install = { + lua = { + "semver.lua" + }, + } +}