aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/meld.rb
blob: 03235a7739608894e07c1291af4c590da31829fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Meld < Formula
  homepage 'http://meldmerge.org'
  url 'http://ftp.gnome.org/pub/GNOME/sources/meld/1.7/meld-1.7.2.tar.xz'
  sha1 '660e47ceb06fd9035a6fcac12da373f8a60fec31'

  depends_on 'intltool' => :build
  depends_on 'xz' => :build
  depends_on :x11
  depends_on 'pygtk'
  depends_on 'pygobject'
  depends_on 'rarian'

  def install
    system "make", "prefix=#{prefix}", "install"
  end
end