From c4437d46bd27083055bb248fa7d1c69f475b2195 Mon Sep 17 00:00:00 2001 From: Filippo Valsorda Date: Wed, 4 Jul 2018 13:03:43 -0400 Subject: [PATCH] Delete local Homebrew Formula now that it's in homebrew-core See #32 --- HomebrewFormula/mkcert.rb | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 HomebrewFormula/mkcert.rb diff --git a/HomebrewFormula/mkcert.rb b/HomebrewFormula/mkcert.rb deleted file mode 100644 index f1be4f8..0000000 --- a/HomebrewFormula/mkcert.rb +++ /dev/null @@ -1,18 +0,0 @@ -class Mkcert < Formula - desc "Simple tool to make locally-trusted development certificates" - homepage "https://github.com/FiloSottile/mkcert" - head "https://github.com/FiloSottile/mkcert.git" - - depends_on "go" => :build - - def install - ENV["GOPATH"] = buildpath - mkcertpath = buildpath/"src/github.com/FiloSottile/mkcert" - mkcertpath.install buildpath.children - cd mkcertpath do - system "go", "build", "-o", bin/"mkcert" - prefix.install_metafiles - end - end -end - \ No newline at end of file