38 lines
1 KiB
Ruby
38 lines
1 KiB
Ruby
require 'formula'
|
|
|
|
class Pngnq < Formula
|
|
homepage 'http://pngnq.sourceforge.net/'
|
|
url 'https://downloads.sourceforge.net/project/pngnq/pngnq/1.1/pngnq-1.1.tar.gz'
|
|
sha1 '6a43dc046171eee56ac2d91cebb93aecde24d26a'
|
|
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 */
|