fb-client 1.4.2

Closes Homebrew/homebrew#38951.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Alex Dunn 2015-04-22 14:29:10 -07:00 committed by Mike McQuaid
parent 65b1fc084f
commit 8d3391e70d

View file

@ -1,14 +1,21 @@
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'
homepage "https://paste.xinu.at"
url "https://paste.xinu.at/data/client/fb-1.4.2.tar.gz"
sha256 "a0479725a370d884a0fdbcd0380028ba9682bd48115142141e17f82930fb66f0"
conflicts_with 'findbugs',
head "https://git.server-speed.net/users/flo/fb",
:using => :git
conflicts_with "findbugs",
:because => "findbugs and fb-client both install a `fb` binary"
depends_on "pkg-config" => :build
def install
system "make", "PREFIX=#{prefix}", "install"
end
test do
system bin/"fb", "-h"
end
end