class Swiftmetamodelgenerator < Formula
  desc "A swift meta model generator"
  homepage "https://thecodelabs.de/tobias/SwiftMetaModelGenerator"
  url "https://thecodelabs.de/tobias/SwiftMetaModelGenerator/-/archive/1.4.2/SwiftMetaModelGenerator-1.4.3.zip"
  version "1.4.3"
  sha256 "faaefad08514ddca4f1142e19fc0b35700a0e3ebca430aa9fe45a0e153aa8519"
  license "MIT"

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

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