homebrew-core/Formula/mediatomb.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

30 lines
956 B
Ruby

require 'formula'
class Mediatomb <Formula
@url='http://downloads.sourceforge.net/mediatomb/mediatomb-0.11.0.tar.gz'
@homepage='http://mediatomb.cc'
@md5='661f08933830d920de21436fe122fb15'
def patches
DATA
end
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end
__END__
diff -Naur mediatomb-0.11.0/src/url.cc mediatomb-0.11.0/src/url-patched.cc
--- mediatomb-0.11.0/src/url.cc 2009-09-19 02:37:12.000000000 +0200
+++ mediatomb-0.11.0/src/url-patched.cc 2009-09-19 02:37:21.000000000 +0200
@@ -75,7 +75,7 @@
if (only_header)
{
- curl_easy_setopt(curl_handle, CURLOPT_NOBODY);
+ curl_easy_setopt(curl_handle, CURLOPT_NOBODY, 1);
curl_easy_setopt(curl_handle, CURLOPT_HEADERFUNCTION, URL::dl);
curl_easy_setopt(curl_handle, CURLOPT_HEADERDATA,
(void *)buffer.getPtr());