class Swiftmetamodelgenerator < Formula
  desc "A swift meta model generator"
  homepage "https://thecodelabs.de/tobias/SwiftMetaModelGenerator"
  url "https://thecodelabs.de/tobias/SwiftMetaModelGenerator/-/archive/1.0.0/SwiftMetaModelGenerator-1.1.0.tar.gz"
  version "1.1.0"
  sha256 "9b5dd8efc1f021191afef206b10456a948651af75ae76f8907fa873ab61c342d"
  license "MIT"

  depends_on xcode: ["12.0", :build]
  depends_on xcode: "12.0"

  def install
    system "swift", "build", "--disable-sandbox", "--configuration", "release"
    bin.install ".build/release/swiftmetamodelgenerator"
  end
end