class Teem < Formula desc "Libraries for scientific raster data" homepage "http://teem.sourceforge.net/" url "https://downloads.sourceforge.net/project/teem/teem/1.11.0/teem-1.11.0-src.tar.gz" sha256 "a01386021dfa802b3e7b4defced2f3c8235860d500c1fa2f347483775d4c8def" head "https://teem.svn.sourceforge.net/svnroot/teem/teem/trunk" bottle do sha256 "31d19cd9e0e4c064fb743c41a286736503e61b1d5e4b81f29140fcebf2cde2c8" => :sierra sha256 "5ade8dc18d0c66ac154d802df6c64e88222781b6fc427a841fb1f4047f8c4e49" => :el_capitan sha256 "3974a9a565044cb4de798eb1bec2b8980eef03eb6bd7ec6c98cddd606f7c8a29" => :yosemite sha256 "c340d18c157b81be663636ff72326ecb946313ea1dfc533a6ba95b9efdb6bf44" => :mavericks sha256 "96733ab04a4a3a7feb5db5c95f58b0a0c1ef418b91988d1000898a46c142a3ec" => :mountain_lion end option "with-experimental-apps", "Build experimental apps" option "with-experimental-libs", "Build experimental libs" deprecated_option "experimental-apps" => "with-experimental-apps" deprecated_option "experimental-libs" => "with-experimental-libs" depends_on "cmake" => :build depends_on "libpng" def install args = std_cmake_args args << "-DBUILD_SHARED_LIBS:BOOL=ON" args << "-DBUILD_EXPERIMENTAL_APPS:BOOL=ON" if build.with? "experimental-apps" args << "-DBUILD_EXPERIMENTAL_LIBS:BOOL=ON" if build.with? "experimental-libs" # Installs CMake archive files directly into lib, which we discourage. # Workaround by adding version to libdir & then symlink into expected structure. args << "-DTeem_USE_LIB_INSTALL_SUBDIR:BOOL=ON" system "cmake", *args system "make", "install" lib.install_symlink Dir.glob(lib/"Teem-#{version}/*.dylib") (lib/"cmake/teem").install_symlink Dir.glob(lib/"Teem-#{version}/*.cmake") end test do system "#{bin}/nrrdSanity" end end