aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/liblcms.rb
diff options
context:
space:
mode:
authorBen Alpert2009-10-02 22:51:33 -0600
committerMax Howell2009-10-03 13:25:19 +0100
commit1d1f2828ec4e95d69e12a0f9ffd1f17d642f9137 (patch)
tree96e2f3c40370356b74a1ff64320b37582e421567 /Library/Formula/liblcms.rb
parenta685aa5d2e0acca3458553755e8213e7196d6281 (diff)
downloadhomebrew-1d1f2828ec4e95d69e12a0f9ffd1f17d642f9137.tar.bz2
dcraw formula
An ANSI C program that decodes any raw image from any digital camera.
Diffstat (limited to 'Library/Formula/liblcms.rb')
-rw-r--r--Library/Formula/liblcms.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/liblcms.rb b/Library/Formula/liblcms.rb
new file mode 100644
index 000000000..045555139
--- /dev/null
+++ b/Library/Formula/liblcms.rb
@@ -0,0 +1,12 @@
+require 'brewkit'
+
+class Liblcms <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", "--disable-dependency-tracking"
+ system "make install"
+ end
+end