homebrew-core/Formula/pngnq.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

37 lines
1.1 KiB
Ruby

class Pngnq < Formula
desc "Tool for optimizing PNG images"
homepage "http://pngnq.sourceforge.net/"
url "https://downloads.sourceforge.net/project/pngnq/pngnq/1.1/pngnq-1.1.tar.gz"
sha256 "c147fe0a94b32d323ef60be9fdcc9b683d1a82cd7513786229ef294310b5b6e2"
revision 1
depends_on "pkg-config" => :build
depends_on "libpng"
# Fixes compilation on OSX Lion
# png.h on Lion does not, in fact, include zlib.h
# See: http://sourceforge.net/tracker/?func=detail&aid=3353513&group_id=213072&atid=1024252
# See: http://sourceforge.net/tracker/?func=detail&aid=3402960&group_id=213072&atid=1024252
patch :DATA
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end
__END__
diff --git a/src/rwpng.c b/src/rwpng.c
index aaa21fc..5324afe 100644
--- a/src/rwpng.c
+++ b/src/rwpng.c
@@ -31,6 +31,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include <zlib.h>
#include "png.h" /* libpng header; includes zlib.h */
#include "rwpng.h" /* typedefs, common macros, public prototypes */