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

class Pcrexx < Formula
  url 'http://www.daemon.de/idisk/Apps/pcre++/pcre++-0.9.5.tar.gz'
  homepage 'http://www.daemon.de/PCRE'
  md5 '1fe6ea8e23ece01fde2ce5fb4746acc2'

  depends_on 'pcre'

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