blob: 9319d531ac45dc5f0a61ec9b0be325e4f65a1781 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
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
  |