aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pcre.rb
blob: fdbb18f4da10a6def7fefc27fb8b7cc1f022cf6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'brewkit'

class Pcre <Formula
  @url='ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.9.tar.bz2'
  @homepage='http://www.pcre.org/'
  @md5='b6a9669d1863423f01ea46cdf00f93dc'

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