homebrew-core/Formula/little-cms.rb

13 lines
293 B
Ruby
Raw Normal View History

require 'formula'
class LittleCms <Formula
url 'http://www.littlecms.com/1/lcms-1.19.tar.gz'
2009-10-15 23:40:35 +00:00
homepage 'http://www.littlecms.com/'
2010-02-07 21:37:46 +00:00
md5 '8af94611baf20d9646c7c2c285859818'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug"
system "make install"
end
end