aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-06-27 11:36:30 -0700
committerAdam Vandenberg2012-06-27 11:36:30 -0700
commite8d69bf8dfead7638bab8cb80fd1e539ddd92151 (patch)
tree82ca8f0d37115e3d3fd50a1fb1f0308ff55f06f1 /Library/Formula
parente326c7627cc7a1d39ed40818740d0eb5c4dfc848 (diff)
downloadhomebrew-e8d69bf8dfead7638bab8cb80fd1e539ddd92151.tar.bz2
Remove metapixel
Metapixel doesn't compile against libpng 1.5 without patching. There was some movement upstream, but now the head source is hard-coded to Lion pathnames, which won't work on Snow Leopard and might break on Mountain Lion too. Rather than maintain our own patches, move to the boneyard. Interested parties should work with upstream to get broad OS X compatibility.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/metapixel.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/Library/Formula/metapixel.rb b/Library/Formula/metapixel.rb
deleted file mode 100644
index 4aa135b38..000000000
--- a/Library/Formula/metapixel.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-require 'formula'
-
-class Metapixel < Formula
- homepage 'http://www.complang.tuwien.ac.at/schani/metapixel/'
- url 'http://www.complang.tuwien.ac.at/schani/metapixel/files/metapixel-1.0.2.tar.gz'
- md5 'af5d77d38826756af213a08e3ada9941'
-
- depends_on 'jpeg'
- depends_on 'giflib'
-
- def install
- man1.mkpath
- # separate steps
- system "make", "CC=#{ENV.cc}",
- "MACOS_LDOPTS=-L#{HOMEBREW_PREFIX}/lib",
- "MACOS_CCOPTS=#{ENV.cflags} -I#{HOMEBREW_PREFIX}/include"
- system "make", "PREFIX=#{prefix}", "install"
- end
-end