blob: e0dbc0b6d8f91195d4140c75955d1688e366e7db (
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.5.0.tar.gz"
sha1 "6e77c2ec1ee32514454ad1fff6494265c583e72c"
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
|