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

class Libxdiff < Formula
  homepage 'http://www.xmailserver.org/xdiff-lib.html'
  url 'http://www.xmailserver.org/libxdiff-0.23.tar.gz'
  sha1 'f92eff48eeb49d5145ddafcb72dcfb18f5d07303'

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