blob: a0f27d17d484a095b5c3fa55f88d21ce69ab8fb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
class Bfg < Formula
homepage "https://rtyley.github.io/bfg-repo-cleaner/"
url "https://repo1.maven.org/maven2/com/madgag/bfg/1.12.3/bfg-1.12.3.jar"
sha1 "4eff57d0418958815681cbbec2f19ed7285252cb"
def install
libexec.install "bfg-1.12.3.jar"
bin.write_jar_script libexec/"bfg-1.12.3.jar", "bfg"
end
test do
system "#{bin}/bfg"
end
end
|