blob: 095ef4d1d94bf03270bfc35c0fa8e47a0084c61b (
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.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
|