blob: ce1029e41985e4e88d7dbf6c4dff38c760c48246 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
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.7.tar.xz"
  sha256 "78f47336f3bdf034a384c59a39cc9f0d566e69e36aa7c9ee3ec0bb6a94bf8b3e"
  def install
    system "./configure", "--disable-silent-rules", "--prefix=#{prefix}"
    system "make", "install"
  end
end
 |