aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xdelta.rb
blob: a558a10b8f0404b6df0330330b8175d7e0c4d4e3 (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.4.tar.gz'
  sha1 'dee79dbd0632071da0ec53886aa4b72d18cc67ec'

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