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.
This commit is contained in:
Jack Nagel 2013-10-19 16:29:52 -05:00
parent d4d0bd0718
commit 107e505a69

12
Formula/mm-common.rb Normal file
View file

@ -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