blob: a50d611ae6532003abc72caa6b9867df77774e90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
require 'formula'
class Libfixbuf < Formula
  url 'http://tools.netsa.cert.org/releases/libfixbuf-0.9.0.tar.gz'
  homepage 'http://tools.netsa.cert.org/fixbuf/'
  md5 '3687a7a28bc9535544e2fbc1d1383077'
  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
  |