2013-06-12 10:15:40 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class FbClient < Formula
|
|
|
|
homepage 'https://paste.xinu.at'
|
2013-09-02 21:47:26 +00:00
|
|
|
url 'https://paste.xinu.at/data/client/fb-1.3.0.tar.gz'
|
|
|
|
sha1 '4ecf517def1f56a4bfccbea9fc977ce0923566fb'
|
2013-06-12 10:15:40 +00:00
|
|
|
|
2013-08-17 17:20:11 +00:00
|
|
|
conflicts_with 'findbugs',
|
|
|
|
:because => "findbugs and fb-client both install a `fb` binary"
|
|
|
|
|
2013-06-12 10:15:40 +00:00
|
|
|
def install
|
|
|
|
system "make", "PREFIX=#{prefix}", "install"
|
|
|
|
end
|
|
|
|
end
|