homebrew-core/Formula/avro-c.rb
Max Howell 77c73ecb89 Use Apache’s closer.cgi where appropriate
Some of these were pointing at archive.apache.org. Now they aren’t, I investigated for good rationale for using the archive before altering it.

mod_python still uses archive.apache.org as that is the only place it exists that I could find.

jsvc *now* uses apache.archive.org as the formula was otherwise broken and the binary tarball it needs no longer exists on the main mirrors.
2011-07-27 10:41:17 +01:00

13 lines
383 B
Ruby

require 'formula'
class AvroC < Formula
url 'http://www.apache.org/dyn/closer.cgi?path=avro/avro-1.5.1/c/avro-c-1.5.1.tar.gz'
homepage 'http://avro.apache.org/'
md5 '80228a62dd58ec19eb8d436258b91952'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end