blob: 4b06670347f10864663eb42a193030f8792daed6 (
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.6.tar.xz'
sha256 '7c37158a1f37604705a9b9305d3b335fb8256f5de701c8801269dde4e2ce7dde'
def install
system "./configure", "--disable-silent-rules", "--prefix=#{prefix}"
system "make", "install"
end
end
|