blob: b55ae0c7f49f9499bc105ae3d8312d8fd3355077 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Gtkmm < Formula
homepage 'http://www.gtkmm.org/'
url 'http://ftp.gnome.org/pub/GNOME/sources/gtkmm/2.24/gtkmm-2.24.4.tar.xz'
sha256 '443a2ff3fcb42a915609f1779000390c640a6d7fd19ad8816e6161053696f5ee'
depends_on 'xz' => :build
depends_on 'pkg-config' => :build
depends_on 'glibmm'
depends_on 'gtk+'
depends_on 'libsigc++'
depends_on 'pangomm'
depends_on 'atkmm'
depends_on 'cairomm'
depends_on :x11
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|