class Bigdata < Formula homepage "http://www.blazegraph.com/bigdata" url "https://downloads.sourceforge.net/project/bigdata/bigdata/1.5.1/bigdata-bundled.jar" sha256 "092ecfb1293de27ef40c02795a34ac410e30d175623a342b27271952f01c1f1a" version "1.5.1" depends_on :java => "1.7+" def install libexec.install "bigdata-bundled.jar" bin.write_jar_script libexec/"bigdata-bundled.jar", "bigdata" end plist_options :startup => "true", :manual => "bigdata start" def plist; <<-EOS.undent Label #{plist_name} Program #{bin}/bigdata RunAtLoad WorkingDirectory #{prefix} EOS end test do server = fork do system bin/"bigdata" end sleep 5 Process.kill("TERM", server) File.exist? "bigdata.jnl" File.exist? "rules.log" end end