homebrew-core/Formula/drip.rb
2015-06-05 14:47:57 +01:00

14 lines
388 B
Ruby

require 'formula'
class Drip < Formula
desc "JVM launching without the hassle of persistent JVMs"
homepage 'https://github.com/flatland/drip'
url 'https://github.com/flatland/drip/archive/0.2.4.tar.gz'
sha1 '6c3c4ea6395e542815c3d5a44612748cc4f1f85e'
def install
system 'make'
libexec.install %w{ bin src Makefile }
bin.install_symlink libexec/'bin/drip'
end
end