homebrew-core/Formula/bfg.rb
Koen Rouwhorst 441898f36a bfg 1.12.5
Closes Homebrew/homebrew#43938.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-09-15 19:02:44 +01:00

17 lines
518 B
Ruby

class Bfg < Formula
desc "Removes large files or passwords from Git history like git-filter-branch does, but faster."
homepage "https://rtyley.github.io/bfg-repo-cleaner/"
url "https://repo1.maven.org/maven2/com/madgag/bfg/1.12.5/bfg-1.12.5.jar"
sha256 "fa797cc6e5878a3b7b61104f3a3ba3d43987e2a7a9c596cb9d137c7b95e6b082"
depends_on :java => "1.7+"
def install
libexec.install "bfg-1.12.5.jar"
bin.write_jar_script libexec/"bfg-1.12.5.jar", "bfg"
end
test do
system "#{bin}/bfg"
end
end