homebrew-core/Formula/pcre.rb
Max Howell fcfd480167 Don't use quotes with the comma separated version of system()
As you don't escape to that version.
2009-09-25 01:24:05 +01:00

12 lines
346 B
Ruby

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