diff options
| author | Max Howell | 2009-05-21 04:37:10 +0100 |
|---|---|---|
| committer | Max Howell | 2009-05-21 04:37:10 +0100 |
| commit | 02cbd0a0a6d17b6483a774ec6689219bce70283d (patch) | |
| tree | ea720810b280e812f53a5872b005fdf62fb82737 | |
| parent | 85bcf8b9e5244f4d4875c1028349be064dc620f9 (diff) | |
| download | brew-02cbd0a0a6d17b6483a774ec6689219bce70283d.tar.bz2 | |
xmlrpc-c formula
| -rw-r--r-- | Formula/xmlrpc-c.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Formula/xmlrpc-c.rb b/Formula/xmlrpc-c.rb new file mode 100644 index 000000000..7c866f5bf --- /dev/null +++ b/Formula/xmlrpc-c.rb @@ -0,0 +1,15 @@ +$:.unshift "#{File.dirname __FILE__}/../Cellar/homebrew" #rubysucks +require 'brewkit' + +homepage='http://xmlrpc-c.sourceforge.net/' +url='http://kent.dl.sourceforge.net/sourceforge/xmlrpc-c/xmlrpc-c-1.06.33.tgz' +md5='7dda4d8c5d26ae877d3809e428ce7962' + +Formula.new(url, md5).brew do |prefix| + # choosing --enable-libxml2-backend to lose some weight and not statically + # link in expat + #NOTE seemingly it isn't possible to build dylibs with this thing + system "./configure --disable-debug --enable-libxml2-backend --prefix='#{prefix}'" + system "make" + system "make install" +end
\ No newline at end of file |
