2010-07-13 22:42:39 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class GnomeCommon < Formula
|
2010-07-13 22:42:39 +00:00
|
|
|
homepage 'http://git.gnome.org/browse/gnome-common/'
|
2013-09-25 14:57:38 +00:00
|
|
|
url 'http://ftp.gnome.org/pub/gnome/sources/gnome-common/3.10/gnome-common-3.10.0.tar.xz'
|
|
|
|
sha256 'aed69474a671e046523827f73ba5e936d57235b661db97900db7356e1e03b0a3'
|
2012-07-16 03:50:46 +00:00
|
|
|
|
|
|
|
depends_on 'xz' => :build
|
|
|
|
|
2010-07-13 22:42:39 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|