gtkmm3 3.4.2

Closes Homebrew/homebrew#15238.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Jannes Jeising 2012-10-02 15:37:24 +02:00 committed by Adam Vandenberg
parent d3f69b4392
commit 5fe6fd3a84
1 changed files with 21 additions and 0 deletions

21
Formula/gtkmm3.rb Normal file
View File

@ -0,0 +1,21 @@
require 'formula'
class Gtkmm3 < Formula
homepage 'http://www.gtkmm.org/'
url 'http://ftp.gnome.org/pub/GNOME/sources/gtkmm/3.4/gtkmm-3.4.2.tar.xz'
sha256 '760c01bca693d26558eb5eae0cf6c743a6bb453258a633f78de506e3c98262b4'
depends_on 'xz' => :build
depends_on 'pkg-config' => :build
depends_on 'glibmm'
depends_on 'gtk+3'
depends_on 'libsigc++'
depends_on 'pangomm'
depends_on 'atkmm'
depends_on :x11
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end