libglademm 2.6.7

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Taylor Mitchell 2012-03-23 13:44:08 -07:00 committed by Adam Vandenberg
parent 8dfd00dae0
commit 3fadbf86f6
1 changed files with 18 additions and 0 deletions

18
Formula/libglademm.rb Normal file
View File

@ -0,0 +1,18 @@
require 'formula'
class Libglademm < Formula
homepage 'http://gnome.org'
url 'http://ftp.gnome.org/pub/GNOME/sources/libglademm/2.6/libglademm-2.6.7.tar.bz2'
md5 'f9ca5b67f6c551ea98790ab5f21c19d0'
depends_on 'pkg-config' => :build
depends_on 'gtkmm'
depends_on 'libglade'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end