aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libfixbuf.rb
blob: cdea0e6b49c6a2f0652c8db7f002008eb30a8e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Libfixbuf < Formula
  homepage 'http://tools.netsa.cert.org/fixbuf/'
  url 'http://tools.netsa.cert.org/releases/libfixbuf-1.1.1.tar.gz'
  md5 '92f4a743a79fb2b0b36b8c3a6cbe4238'

  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