aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlex Dunn2015-04-22 14:29:10 -0700
committerMike McQuaid2015-04-23 21:55:12 +0100
commitce52e8fff1fd13a651ac46ce721601321624f404 (patch)
tree803df8c1e696e11e9c92c7128afe359e532ec35a /Library/Formula
parent26dca6367ecd61058514170b870062b1bd7c669a (diff)
downloadhomebrew-ce52e8fff1fd13a651ac46ce721601321624f404.tar.bz2
fb-client 1.4.2
Closes #38951. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fb-client.rb19
1 files changed, 13 insertions, 6 deletions
diff --git a/Library/Formula/fb-client.rb b/Library/Formula/fb-client.rb
index 9319d531a..dfdfe707e 100644
--- a/Library/Formula/fb-client.rb
+++ b/Library/Formula/fb-client.rb
@@ -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"
+
+ head "https://git.server-speed.net/users/flo/fb",
+ :using => :git
- conflicts_with 'findbugs',
+ 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