homebrew-core/Formula/fb-client.rb
Markus Cisler d41ffbee3d fb-client 1.3.0
Closes Homebrew/homebrew#22272.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-09-02 18:32:09 -05:00

14 lines
359 B
Ruby

require 'formula'
class FbClient < Formula
homepage 'https://paste.xinu.at'
url 'https://paste.xinu.at/data/client/fb-1.3.0.tar.gz'
sha1 '4ecf517def1f56a4bfccbea9fc977ce0923566fb'
conflicts_with 'findbugs',
:because => "findbugs and fb-client both install a `fb` binary"
def install
system "make", "PREFIX=#{prefix}", "install"
end
end