homebrew-core/Formula/icoutils.rb
2015-04-13 06:05:49 +01:00

27 lines
845 B
Ruby

class Icoutils < Formula
homepage "http://www.nongnu.org/icoutils/"
url "http://savannah.nongnu.org/download/icoutils/icoutils-0.31.0.tar.bz2"
sha1 "2712acd33c611588793562310077efd2ff35dca5"
revision 1
bottle do
cellar :any
revision 1
sha256 "1315328cc26b6b451988ec90e90e1275248e77fb7b1832f6b0bebd9576e12f8c" => :yosemite
sha256 "9fbee2309af99b4227774615f27f5907d66c139592c9b743a4836002e7a56591" => :mavericks
sha256 "11a997405f353431ff5dac5050c2668fdf3241b9e124ca38408a2a05a8b10b09" => :mountain_lion
end
depends_on "libpng"
def install
system "./configure", "--disable-dependency-tracking",
"--disable-rpath",
"--prefix=#{prefix}"
system "make", "install"
end
test do
system "#{bin}/icotool", "-l", test_fixtures("test.ico")
end
end