blob: d5a54a4c71931e99dcf8dabcfecea1d7dff35c1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Glibmm < Formula
homepage 'http://www.gtkmm.org/'
url 'http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.36/glibmm-2.36.0.tar.xz'
sha256 '59c54996cccc527f3a257964e7226151175c423f6fb22166e81d65a652f483f3'
depends_on 'xz' => :build
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
|