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

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

  depends_on 'pcre'

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