0666468e59
Closes Homebrew/homebrew#31038.
51 lines
1.5 KiB
Ruby
51 lines
1.5 KiB
Ruby
require "formula"
|
|
|
|
class Metaproxy < Formula
|
|
homepage "http://www.indexdata.com/metaproxy"
|
|
url "http://ftp.indexdata.dk/pub/metaproxy/metaproxy-1.5.7.tar.gz"
|
|
sha1 "9aeef7d1133a7b74458138266d1cdb5852159fc2"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "4ef2fa89bb8daa314f3bdc6c53505c16496a1167" => :mavericks
|
|
sha1 "a2578c348ac2bfcd5fcc8e1bbb56986b1bfb75f1" => :mountain_lion
|
|
sha1 "54f9f2c65fbde55a8ae9919cdf5e20e2d8d9a0aa" => :lion
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "yazpp"
|
|
depends_on "boost"
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
# Test by making metaproxy test a trivial configuration file (etc/config0.xml).
|
|
test do
|
|
(testpath/"test-config.xml").write <<-EOS.undent
|
|
<?xml version="1.0"?>
|
|
<metaproxy xmlns="http://indexdata.com/metaproxy" version="1.0">
|
|
<start route="start"/>
|
|
<filters>
|
|
<filter id="frontend" type="frontend_net">
|
|
<port max_recv_bytes="1000000">@:9070</port>
|
|
<message>FN</message>
|
|
<stat-req>/fn_stat</stat-req>
|
|
</filter>
|
|
</filters>
|
|
<routes>
|
|
<route id="start">
|
|
<filter refid="frontend"/>
|
|
<filter type="log"><category access="false" line="true" apdu="true" /></filter>
|
|
<filter type="backend_test"/>
|
|
<filter type="bounce"/>
|
|
</route>
|
|
</routes>
|
|
</metaproxy>
|
|
EOS
|
|
|
|
system "#{bin}/metaproxy", "-t", "--config", "#{testpath}/test-config.xml"
|
|
end
|
|
end
|