homebrew-core/Formula/liblcms.rb
David Backeus f288142d60 Fixed broken liblcms formula and updated it to version 1.19.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-06-08 08:03:27 -07:00

12 lines
353 B
Ruby

require 'formula'
class Liblcms <Formula
url 'http://downloads.sourceforge.net/project/lcms/lcms/1.19/lcms-1.19.tar.gz'
homepage 'http://www.littlecms.com/'
md5 '8af94611baf20d9646c7c2c285859818'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end