diff options
| author | Taylor Mitchell | 2012-03-23 13:44:08 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-03-25 17:17:37 -0700 |
| commit | ffb619179bae52cd255af716b529a538655ea203 (patch) | |
| tree | 72d2f9db44da6c9a83e33cfa36508b766578cca5 /Library | |
| parent | 4a617cf47c08c07628732366a3436b3774f0d5ca (diff) | |
| download | homebrew-ffb619179bae52cd255af716b529a538655ea203.tar.bz2 | |
libglademm 2.6.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/libglademm.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/libglademm.rb b/Library/Formula/libglademm.rb new file mode 100644 index 000000000..2b6047caf --- /dev/null +++ b/Library/Formula/libglademm.rb @@ -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 |
