From 5150b9e4b7b34b65dcec45666c534341c7f586b8 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Mon, 20 Feb 2012 19:39:45 -0800 Subject: [PATCH] Remove pngwriter from homebrew-core. This software appears unmaintained, and does not work with libpng 1.5 provided by Lion. So moving to Homebrew-alt. --- Formula/pngwriter.rb | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 Formula/pngwriter.rb diff --git a/Formula/pngwriter.rb b/Formula/pngwriter.rb deleted file mode 100644 index ddb56c1987b..00000000000 --- a/Formula/pngwriter.rb +++ /dev/null @@ -1,16 +0,0 @@ -require 'formula' - -class Pngwriter < Formula - url 'http://downloads.sourceforge.net/project/pngwriter/pngwriter/pngwriter-0.5.4/pngwriter-0.5.4.zip' - homepage 'http://pngwriter.sourceforge.net/' - md5 '7e0c20f2cce6da685b68d5e9b15b5207' - - def install - # the zip file contains one more directory - cd("pngwriter-0.5.4") - # use the OSX specific makefile - ln_sf("make.include.osx", "make.include") - system "make PREFIX=#{prefix}" - system "make install PREFIX=#{prefix}" - end -end