aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-10-19 16:29:52 -0500
committerJack Nagel2013-10-19 16:29:53 -0500
commitdda7bb4051097a1e60130af227b4d401e709c951 (patch)
treee821b691cb209c79e8695a270531891278d861b9 /Library
parentf94e1c35f2f0cd051d2dc848d76d0f834b5d30c5 (diff)
downloadhomebrew-dda7bb4051097a1e60130af227b4d401e709c951.tar.bz2
New formula: mm-common
mm-common provides common build infrastructure for GNOME C++ bindings. It is required when bootstrapping a build, but not when building from release tarballs.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mm-common.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/mm-common.rb b/Library/Formula/mm-common.rb
new file mode 100644
index 000000000..4b0667034
--- /dev/null
+++ b/Library/Formula/mm-common.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class MmCommon < Formula
+ homepage 'http://www.gtkmm.org'
+ url 'http://ftp.gnome.org/pub/GNOME/sources/mm-common/0.9/mm-common-0.9.6.tar.xz'
+ sha256 '7c37158a1f37604705a9b9305d3b335fb8256f5de701c8801269dde4e2ce7dde'
+
+ def install
+ system "./configure", "--disable-silent-rules", "--prefix=#{prefix}"
+ system "make", "install"
+ end
+end