blob: 15a3a2c76cc276680edcfd9e22880ed3e64fccc1 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 | require "formula"
class Cppunit < Formula
  homepage "http://www.freedesktop.org/wiki/Software/cppunit/"
  url "http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz"
  sha1 "0eaf8bb1dcf4d16b12bec30d0732370390d35e6f"
  bottle do
    cellar :any
    revision 1
    sha1 "18dfd9a7ceb08906e112c192af525908bcc42663" => :yosemite
    sha1 "e27e6f4f3faac5c2f280b088a48d7c83e7faf491" => :mavericks
    sha1 "06f8e404202b942139a979911b94c725ed83795a" => :mountain_lion
  end
  option :universal
  depends_on "autoconf" => :build
  depends_on "automake" => :build
  depends_on "libtool" => :build
  def install
    ENV.universal_binary if build.universal?
    system "autoreconf", "-fvi"
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end
 |