class Libicns < Formula desc "Library for manipulation of the macOS .icns resource format" homepage "https://icns.sourceforge.io/" url "https://downloads.sourceforge.net/project/icns/libicns-0.8.1.tar.gz" mirror "https://mirrors.kernel.org/debian/pool/main/libi/libicns/libicns_0.8.1.orig.tar.gz" sha256 "335f10782fc79855cf02beac4926c4bf9f800a742445afbbf7729dab384555c2" revision 3 bottle do cellar :any sha256 "8fb5848fa2a111b3fc66aaea73c60a0795da6468e2ace92d2de57c9c8a5a3cde" => :sierra sha256 "12579e9f34ef57d3979b5a01206b543a67bf313cdb056d6c3e20e0b8cf0842b6" => :el_capitan sha256 "aed1a7df05a8f98ea64dcdd8c4a406207239b7b187629fc03ae799308a142a4d" => :yosemite end depends_on "jasper" depends_on "libpng" def install # Fix for libpng 1.5 inreplace "icnsutils/png2icns.c", "png_set_gray_1_2_4_to_8", "png_set_expand_gray_1_2_4_to_8" system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make", "install" end test do (testpath/"test.c").write <<-EOS.undent #include #include "icns.h" int main(void) { int error = 0; FILE *inFile = NULL; icns_family_t *iconFamily = NULL; icns_image_t iconImage; return 0; } EOS system ENV.cc, "-L#{lib}", "-licns", testpath/"test.c", "-o", "test" system "./test" end end