package = "strictness"
version = "0.3.0-1"
source = {
   url = "https://github.com/Yonaba/strictness/archive/strictness-0.3.0-1.tar.gz",
   dir = "strictness-strictness-0.3.0-1"
}
description = {
   summary = "A strict mode for Lua",
   detailed = [[
    strictness tracks accesses and assignments to undefined variables
    in Lua code. It enforces to initialize non local variables explicitely, 
    before assignment. As such, it helps having a better control over the 
    scope of variables across the code.
   ]],
   homepage = "http://yonaba.github.com/strictness",
   license = "MIT <http://www.opensource.org/licenses/mit-license.php>"
}
dependencies = {
   "lua >= 5.1, <= 5.3"
}
build = {
  type = "builtin",
  modules = {
    ["strictness"] = "strictness.lua"
  },
  copy_directories = {"spec", "doc"}
}