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

class Xdelta < Formula
  homepage 'http://xdelta.org'
  url 'http://xdelta.googlecode.com/files/xdelta3-3.0.6.tar.gz'
  sha1 'a468ce0efb0cd1c7dbdff637731e9ac6470437c6'

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