2014-05-25 08:51:18 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class Bfg < Formula
|
|
|
|
homepage "http://rtyley.github.io/bfg-repo-cleaner/"
|
2014-10-31 11:06:34 +00:00
|
|
|
url "http://repo1.maven.org/maven2/com/madgag/bfg/1.11.8/bfg-1.11.8.jar"
|
|
|
|
sha1 "9834ed826f2b3f1da1f28f663e3c5b9cf807ab1e"
|
2014-05-25 08:51:18 +00:00
|
|
|
|
2014-10-31 11:15:45 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "2d5f40dcbeccdf9629d9a6a01ac6147ee27d625a" => :yosemite
|
|
|
|
sha1 "cfb607b5fd0b9f4449d68516bc348171f9745232" => :mavericks
|
|
|
|
sha1 "ee1a0dd42789fbfeaacd3c397224f52873eab98f" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2014-05-25 08:51:18 +00:00
|
|
|
def install
|
2014-10-31 11:06:34 +00:00
|
|
|
libexec.install "bfg-1.11.8.jar"
|
|
|
|
bin.write_jar_script libexec/"bfg-1.11.8.jar", "bfg"
|
2014-05-25 08:51:18 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/bfg"
|
|
|
|
end
|
|
|
|
end
|