2010-12-13 22:41:24 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libicns < Formula
|
2010-12-13 22:41:24 +00:00
|
|
|
homepage 'http://icns.sourceforge.net/'
|
2012-03-07 20:09:11 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/icns/icns/libicns-0.8.0/libicns-0.8.0.tar.gz'
|
|
|
|
sha256 '8a720d45f6cf3cb88255d80965e486857b77b894a345e9a6b321cb03aa3d064a'
|
2010-12-13 22:41:24 +00:00
|
|
|
|
2011-06-13 14:04:18 +00:00
|
|
|
depends_on 'jasper'
|
2010-12-13 22:41:24 +00:00
|
|
|
|
|
|
|
def install
|
2011-06-13 14:04:18 +00:00
|
|
|
# Fix for libpng 1.5 on Lion, may not be needed in head version of libicns
|
|
|
|
inreplace 'icnsutils/png2icns.c', 'png_set_gray_1_2_4_to_8', 'png_set_expand_gray_1_2_4_to_8'
|
|
|
|
|
2010-12-13 22:41:24 +00:00
|
|
|
ENV.libpng
|
2011-06-13 14:04:18 +00:00
|
|
|
ENV.universal_binary # Also build 32-bit so Wine can use it
|
2010-12-13 22:41:24 +00:00
|
|
|
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|