Expat formula
Expat is an XML parser library written in C.
This commit is contained in:
parent
7ec0a04093
commit
1bea6b4f2f
1 changed files with 16 additions and 0 deletions
16
Formula/expat.rb
Normal file
16
Formula/expat.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require 'brewkit'
|
||||
|
||||
class Expat <Formula
|
||||
@url='http://softlayer.dl.sourceforge.net/project/expat/expat/2.0.1/expat-2.0.1.tar.gz'
|
||||
@homepage='http://expat.sourceforge.net/'
|
||||
@md5='ee8b492592568805593f81f8cdf2a04c'
|
||||
|
||||
def install
|
||||
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
||||
system "make install"
|
||||
end
|
||||
|
||||
def caveats
|
||||
"Note that OS X has Expat 1.5 installed in /usr already."
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue