homebrew-core/Formula/metaproxy.rb
Brett Koonce 18bc74938d metaproxy 1.4.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-10-11 20:11:18 -07:00

17 lines
448 B
Ruby

require 'formula'
class Metaproxy < Formula
homepage 'http://www.indexdata.com/metaproxy'
url 'http://ftp.indexdata.dk/pub/metaproxy/metaproxy-1.4.0.tar.gz'
sha1 '032c5d5334aa34eb239cdac7b2579d83844ecba2'
depends_on 'pkg-config' => :build
depends_on 'yazpp'
depends_on 'boost'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end