require 'formula' class H2 < Formula homepage 'http://www.h2database.com/' url 'http://www.h2database.com/h2-2014-04-05.zip' version '1.3.176' sha1 '9a87bf67741e1b9f9711db160e783898f4242bfe' def script; <<-EOS.undent #!/bin/sh cd #{libexec} && bin/h2.sh "$@" EOS end def install # Remove windows files rm_f Dir["bin/*.bat"] # Fix the permissions on the script chmod 0755, "bin/h2.sh" libexec.install Dir['*'] (bin+'h2').write script end plist_options :manual => 'h2' def plist; <<-EOS.undent Label #{plist_name} RunAtLoad KeepAlive ProgramArguments #{opt_bin}/h2 -tcp -web -pg WorkingDirectory #{HOMEBREW_PREFIX} EOS end end