homebrew-core/Formula/little-cms2.rb
Jack Nagel b97c9475dc lcms and lcms2: add optional deps on jpeg and tiff
These things are picked up if they are installed, and as they are pretty
lightweight we may as well mark them as optional deps.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-01-30 19:12:26 -06:00

15 lines
371 B
Ruby

require 'formula'
class LittleCms2 < Formula
url 'http://sourceforge.net/projects/lcms/files/lcms/2.3/lcms2-2.3.tar.gz'
homepage 'http://www.littlecms.com/'
md5 '327348d67c979c88c2dec59a23a17d85'
depends_on 'jpeg' => :optional
depends_on 'libtiff' => :optional
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end