homebrew-core/Formula/libfixbuf.rb

19 lines
508 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libfixbuf < Formula
homepage 'http://tools.netsa.cert.org/fixbuf/'
url 'http://tools.netsa.cert.org/releases/libfixbuf-1.3.0.tar.gz'
sha1 '5badc492906b0f04cd7afccef39c5e0cfc765c88'
depends_on 'pkg-config' => :build
depends_on 'glib'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make"
system "make install"
end
end