homebrew-core/Formula/fb-client.rb

15 lines
359 B
Ruby
Raw Normal View History

require 'formula'
class FbClient < Formula
homepage 'https://paste.xinu.at'
2013-07-31 17:11:46 +00:00
url 'https://paste.xinu.at/data/client/fb-1.1.4.tar.gz'
sha1 '03483b5cdda9d27121941ddd10ffd20967f3f63b'
conflicts_with 'findbugs',
:because => "findbugs and fb-client both install a `fb` binary"
def install
system "make", "PREFIX=#{prefix}", "install"
end
end