31 lines
876 B
Ruby
31 lines
876 B
Ruby
class Bfg < Formula
|
|
desc "Remove large files or passwords from Git history like git-filter-branch"
|
|
homepage "https://rtyley.github.io/bfg-repo-cleaner/"
|
|
url "https://search.maven.org/remotecontent?filepath=com/madgag/bfg/1.14.0/bfg-1.14.0.jar"
|
|
sha256 "1a75e9390541f4b55d9c01256b361b815c1e0a263e2fb3d072b55c2911ead0b7"
|
|
license "GPL-3.0-or-later"
|
|
|
|
livecheck do
|
|
url "https://github.com/rtyley/bfg-repo-cleaner.git"
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, all: "0a259e5976efec25eb23f87c0a68fd949f1ed8fb41964fa774fe95dc1d550928"
|
|
end
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
libexec.install "bfg-#{version}.jar"
|
|
(bin/"bfg").write <<~EOS
|
|
#!/bin/bash
|
|
exec "#{Formula["openjdk"].opt_bin}/java" -jar "#{libexec}/bfg-#{version}.jar" "$@"
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/bfg"
|
|
end
|
|
end
|