class LittleCms < Formula desc "Version 1 of the Little CMS library" homepage "http://www.littlecms.com/" url "https://downloads.sourceforge.net/project/lcms/lcms/1.19/lcms-1.19.tar.gz" sha256 "80ae32cb9f568af4dc7ee4d3c05a4c31fc513fc3e31730fed0ce7378237273a9" bottle do cellar :any revision 1 sha256 "c1dd6107f2d5e565f35e8358bd968ba7161ad3809d1b5bab4a412d3f01ec874f" => :el_capitan sha1 "bf1ee324d9c03017d15e380e5f6efc25ec8e2831" => :yosemite sha1 "3642f7bcd6d1e64826b3a184a000fe6e3ea9ad0f" => :mavericks sha1 "bc893b9e8deeaed1a4cd2f84595d17f8a7e44d76" => :mountain_lion end option :universal depends_on :python => :optional depends_on "jpeg" => :recommended depends_on "libtiff" => :recommended def install ENV.universal_binary if build.universal? args = %W[--disable-dependency-tracking --disable-debug --prefix=#{prefix}] args << "--without-tiff" if build.without? "libtiff" args << "--without-jpeg" if build.without? "jpeg" if build.with? "python" args << "--with-python" inreplace "python/Makefile.in" do |s| s.change_make_var! "pkgdir", lib/"python2.7/site-packages" end end system "./configure", *args system "make" ENV.deparallelize system "make", "install" end test do system "#{bin}/jpegicc", test_fixtures("test.jpg"), "out.jpg" assert File.exist?("out.jpg") end end