diff options
| author | Mathias Bynens | 2014-05-25 10:51:18 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-27 21:14:22 -0700 |
| commit | 95698e62485cb18ff6bd51a53f9523f7f16a60e0 (patch) | |
| tree | 03d839897527349f7f9799756a5ef8f1240bdf35 | |
| parent | dc04731ce11109836b337814ed336b80b64dd6e4 (diff) | |
| download | homebrew-95698e62485cb18ff6bd51a53f9523f7f16a60e0.tar.bz2 | |
bfg: 1.11.6 (new formula)
BFG Repo-Cleaner removes large or troublesome blobs like
`git-filter-branch` does, but faster.
http://rtyley.github.io/bfg-repo-cleaner/
Closes #29562.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/bfg.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/bfg.rb b/Library/Formula/bfg.rb new file mode 100644 index 000000000..81d0c58bf --- /dev/null +++ b/Library/Formula/bfg.rb @@ -0,0 +1,16 @@ +require "formula" + +class Bfg < Formula + homepage "http://rtyley.github.io/bfg-repo-cleaner/" + url "http://repo1.maven.org/maven2/com/madgag/bfg/1.11.6/bfg-1.11.6.jar" + sha1 "bbe33eb231435c04f5713d05d3b17a9b88d4954e" + + def install + libexec.install "bfg-1.11.6.jar" + bin.write_jar_script libexec/"bfg-1.11.6.jar", "bfg" + end + + test do + system "#{bin}/bfg" + end +end |
