aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-28 06:22:03 -0700
committerAdam Vandenberg2010-08-07 18:08:53 -0700
commit2601886a3fe43081869bc9454578f683fc3df346 (patch)
treebc90ec585642892f5b384eeb4f2341324338918b /Library/Formula
parentd0efd9ee94a55e243f3b10e903526274fc21d569 (diff)
downloadhomebrew-2601886a3fe43081869bc9454578f683fc3df346.tar.bz2
Remove duplicate little-cms formula.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/dcraw.rb2
-rw-r--r--Library/Formula/liblcms.rb12
2 files changed, 1 insertions, 13 deletions
diff --git a/Library/Formula/dcraw.rb b/Library/Formula/dcraw.rb
index 40edfe781..156be402b 100644
--- a/Library/Formula/dcraw.rb
+++ b/Library/Formula/dcraw.rb
@@ -12,7 +12,7 @@ class Dcraw <Formula
md5 'd680b17ce75ab1c791fe92b467f1005d'
depends_on 'jpeg'
- depends_on 'liblcms'
+ depends_on 'little-cms'
def install
system "#{ENV.cc} -o dcraw #{ENV['CFLAGS']} dcraw.c -lm -ljpeg -llcms"
diff --git a/Library/Formula/liblcms.rb b/Library/Formula/liblcms.rb
deleted file mode 100644
index 20812ef9c..000000000
--- a/Library/Formula/liblcms.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-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