2010-12-31 14:55:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Gtkmm < Formula
|
2010-12-31 14:55:56 +00:00
|
|
|
homepage 'http://www.gtkmm.org/'
|
2014-04-03 14:25:42 +00:00
|
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/gtkmm/2.24/gtkmm-2.24.4.tar.xz'
|
2013-07-03 17:16:18 +00:00
|
|
|
sha256 '443a2ff3fcb42a915609f1779000390c640a6d7fd19ad8816e6161053696f5ee'
|
2010-12-31 14:55:56 +00:00
|
|
|
|
2014-02-24 15:11:24 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "12abc3e448a6419e147fa394388f9bace5151fb3" => :mavericks
|
|
|
|
sha1 "418cbdad18035d6ed5ca13ad580017c5ed05f901" => :mountain_lion
|
|
|
|
sha1 "4cc024301f11dd741da9c229ec7e083dcd92613a" => :lion
|
|
|
|
end
|
|
|
|
|
2010-12-31 14:55:56 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'glibmm'
|
|
|
|
depends_on 'gtk+'
|
|
|
|
depends_on 'libsigc++'
|
|
|
|
depends_on 'pangomm'
|
2012-02-12 14:24:47 +00:00
|
|
|
depends_on 'atkmm'
|
2013-05-29 16:15:52 +00:00
|
|
|
depends_on 'cairomm'
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2010-12-31 14:55:56 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|