homebrew-core/Formula/ilmbase.rb
David Ryskalczyk 9b57c8bc6e ilmbase: add universal option
Closes Homebrew/homebrew#45709.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-11-06 04:31:43 +00:00

31 lines
1.2 KiB
Ruby

class Ilmbase < Formula
desc "OpenEXR ILM Base libraries (high dynamic-range image file format)"
homepage "http://www.openexr.com/"
url "http://download.savannah.nongnu.org/releases/openexr/ilmbase-2.2.0.tar.gz"
mirror "http://download-mirror.savannah.gnu.org/releases/openexr/ilmbase-2.2.0.tar.gz"
sha256 "ecf815b60695555c1fbc73679e84c7c9902f4e8faa6e8000d2f905b8b86cedc7"
bottle do
sha256 "5af6e5465031991066dd408545c3c707f840a26af05fd2919d84df97e2f23709" => :el_capitan
sha256 "8731825e3d23b3039f73cbe803dcd6dc5af6df5ae14f59dbc9c51c83d1777c04" => :yosemite
sha256 "a944b3ec5ff894f4dc236f278e3ee24820b47247858c4f5a6c2480cd5855ce9d" => :mavericks
sha256 "004459343b047ccf6e8474c37df3f20fa01d6093d68edf11aa56b11c80a4e617" => :mountain_lion
end
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
(share/"ilmbase").install %W[Half HalfTest Iex IexMath IexTest IlmThread Imath ImathTest]
end
test do
cd share/"ilmbase/IexTest" do
system ENV.cxx, "-I#{include}/OpenEXR", "-I./", "-c",
"testBaseExc.cpp", "-o", testpath/"test"
end
end
end