7a756462d8
Closes Homebrew/homebrew#10007. [jn: tested the other mm formulae against this, no issues] Signed-off-by: Jack Nagel <jacknagel@gmail.com>
16 lines
447 B
Ruby
16 lines
447 B
Ruby
require 'formula'
|
|
|
|
class Glibmm < Formula
|
|
homepage 'http://www.gtkmm.org/'
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.28/glibmm-2.28.2.tar.bz2'
|
|
sha256 '7b67178363f8494c94f8b3dd704a4c8db7ad75a253fc84a4ad229e5e179ec192'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'libsigc++'
|
|
depends_on 'glib'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|