class Swiftmetamodelgenerator < Formula
  desc "A swift meta model generator"
  homepage "https://thecodelabs.de/tobias/SwiftMetaModelGenerator"
  url "https://thecodelabs.de/tobias/SwiftMetaModelGenerator/-/archive/1.3.0/SwiftMetaModelGenerator-1.3.0.zip"
  version "1.3.0"
  sha256 "2a4231223c164baa93dd5787accbcbcbc1d2280814b3ae9fb97b21cb8771c7eb"
  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