2014-05-25 08:51:18 +00:00
|
|
|
class Bfg < Formula
|
2015-10-05 12:03:06 +00:00
|
|
|
desc "Remove large files or passwords from Git history like git-filter-branch"
|
2014-12-21 19:42:03 +00:00
|
|
|
homepage "https://rtyley.github.io/bfg-repo-cleaner/"
|
2017-02-03 09:24:13 +00:00
|
|
|
url "https://search.maven.org/remotecontent?filepath=com/madgag/bfg/1.12.15/bfg-1.12.15.jar"
|
|
|
|
sha256 "330af214a0fed320c591afc1046b0f31e8a438f290da09672973aeaa6411b09d"
|
2015-08-06 08:50:13 +00:00
|
|
|
|
2015-10-23 08:32:11 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2016-09-24 15:45:48 +00:00
|
|
|
depends_on :java => "1.7+"
|
2014-05-25 08:51:18 +00:00
|
|
|
|
|
|
|
def install
|
2017-02-03 09:24:13 +00:00
|
|
|
libexec.install "bfg-1.12.15.jar"
|
|
|
|
bin.write_jar_script libexec/"bfg-1.12.15.jar", "bfg"
|
2014-05-25 08:51:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/bfg"
|
|
|
|
end
|
|
|
|
end
|