aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gnome-common.rb
blob: 2c9534da850685b178d6766dc1d9fdfc397ad584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class GnomeCommon < Formula
  homepage 'http://git.gnome.org/browse/gnome-common/'
  url 'http://ftp.gnome.org/pub/gnome/sources/gnome-common/3.10/gnome-common-3.10.0.tar.xz'
  sha256 'aed69474a671e046523827f73ba5e936d57235b661db97900db7356e1e03b0a3'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end