package = "dogmac"
version = "1.0.rc16-0"
source = {
  url = "git+https://bitbucket.org/dogmalang/dogmac.git"
}
description = {
  summary = "Compiler for the Dogma language (dogmalang.com).",
  detailed = [[
    Compiler for the Dogma language (dogmalang.com).
  ]],
  homepage = "http://dogmalang.com",
  license = "",
  maintainer = "DogmaticLabs <hello@dogmalang.com>"
}
dependencies = {
  "lua >= 5.3",
  "dogma-core >= 1.0.rc16",
  "lua_cliargs >= 3.0",
  "lua-yaml >= 1.2-2",
  "penlight >= 1.5"
}
build = {
  type = "builtin",
  modules = {
    ["dogmac.js"] = "src/js.lua",
    ["dogmac.checker"] = "src/checker.lua"
  },
  install = {
    bin = {
      dogmac = "bin/dogmac.lua"
    }
  }
}
