aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/little-cms.rb
blob: 852ef3befb577199597059333dbe7599f64181c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class LittleCms <Formula
  url 'http://www.littlecms.com/lcms-1.18a.tar.gz'
  homepage 'http://www.littlecms.com/'
  md5 'f4abfe1c57ea3f633c2e9d034e74e3e8'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug"
    system "make install"
  end
end