2010-12-21 19:06:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Icoutils < Formula
|
2010-12-21 19:06:00 +00:00
|
|
|
url 'http://savannah.nongnu.org/download/icoutils/icoutils-0.29.1.tar.bz2'
|
|
|
|
homepage 'http://www.nongnu.org/icoutils/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '312036e81d8c1800fb21ca6fc6b6ff3219e2c030'
|
2010-12-21 19:06:00 +00:00
|
|
|
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :libpng
|
|
|
|
|
2010-12-21 19:06:00 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--disable-rpath",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|