package = "lunitx"
version = "scm.mot.skip-0"
source = {
  url = "https://github.com/moteus/lunit/archive/moteus-skip.zip",
  dir = "lunit-moteus-skip"
}
description = {
  summary = "Lunitx is a unit testing framework for lua, written in lua.",
  detailed = [[
    Lunitx is a unit testing framework for lua, written in lua,
    based heavily on Lunit 0.5, but modified to work with Lua 5.2.
    Lunitx provides 27 assert functions, and a few misc functions
    for usage in an easy unit testing framework.
    Lunit comes with a test suite to test itself. The testsuite
    consists of approximately 710 assertions.
  ]],
  homepage = "https://github.com/dcurrie/lunit",
  license = "MIT/X11"
}
dependencies = {
  "lua >= 5.1, < 5.4"
}
build = {
  copy_directories = {},
  type = "builtin",
  modules = {
    ["lunit"] = "lua/lunit.lua",
    ["lunitx"] = "lua/lunitx.lua",
    ["lunit.console"] = "lua/lunit/console.lua",
    ["lunitx.atexit"] = "lua/lunitx/atexit.lua",
  },
  install = {
    bin = {
      ["lunit.sh"] = "extra/lunit.sh",
    }
  }
}
