35 lines
1.4 KiB
Ruby
35 lines
1.4 KiB
Ruby
class Cmockery2 < Formula
|
|
desc "Reviving cmockery unit test framework from Google"
|
|
homepage "https://github.com/lpabon/cmockery2"
|
|
url "https://github.com/lpabon/cmockery2/archive/v1.3.9.tar.gz"
|
|
sha256 "c38054768712351102024afdff037143b4392e1e313bdabb9380cab554f9dbf2"
|
|
head "https://github.com/lpabon/cmockery2.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "a36cbb449fcca235226fcfa94439f2370f22d3d6f1986c710c1e640959f8a271" => :mojave
|
|
sha256 "3651caa0ed8c5e2ec5dc0fe8932a53e20c2af28d3887161d1cdfe9c46fb9f220" => :high_sierra
|
|
sha256 "661b4a8751a4dbe7e52b19cd9452d8b7dd61c929d73da27ac4fca5623a0dff6c" => :sierra
|
|
sha256 "61b64aeaf89d205742bbb254148502cd2df83bcf05d20377bdce8637f275bee5" => :el_capitan
|
|
sha256 "ea94ba8420bd5bc01412b52ce9c03b392b933f279d1bce7a8ff8f7502bc83f88" => :yosemite
|
|
sha256 "ce0cc1a3151655d4bb970ca92c87c5ebb5ed660c3c445e763edc4b835ca7e9a6" => :mavericks
|
|
end
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "pkg-config" => :build
|
|
|
|
def install
|
|
system "./autogen.sh"
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make", "install"
|
|
(share+"example").install "src/example/calculator.c"
|
|
end
|
|
|
|
test do
|
|
system ENV.cc, share+"example/calculator.c", "-L#{lib}", "-lcmockery", "-o", "calculator"
|
|
system "./calculator"
|
|
end
|
|
end
|