8dc451e3e2
Closes Homebrew/homebrew#20645. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
508 B
Ruby
19 lines
508 B
Ruby
require 'formula'
|
|
|
|
class LittleCms < Formula
|
|
homepage 'http://www.littlecms.com/'
|
|
url 'http://downloads.sourceforge.net/project/lcms/lcms/1.19/lcms-1.19.tar.gz'
|
|
sha1 'd5b075ccffc0068015f74f78e4bc39138bcfe2d4'
|
|
|
|
depends_on :python => :optional
|
|
depends_on 'jpeg' => :optional
|
|
depends_on 'libtiff' => :optional
|
|
|
|
def install
|
|
args = ["--disable-debug", "--prefix=#{prefix}"]
|
|
args << "--with-python" if build.with? "python"
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|