2012-08-29 13:48:16 +00:00
|
|
|
class Drip < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "JVM launching without the hassle of persistent JVMs"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://github.com/flatland/drip"
|
|
|
|
url "https://github.com/flatland/drip/archive/0.2.4.tar.gz"
|
|
|
|
sha256 "9ed25e29759a077d02ddac61785f33d1f2e015b74f1fd934890aba4a35b3551d"
|
2012-08-29 13:48:16 +00:00
|
|
|
|
2016-02-28 14:11:32 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
|
|
|
sha256 "69a071055da45949c56df74c4959336f9511f863f447aed941a66547169f2c88" => :el_capitan
|
|
|
|
sha256 "14711be9325c0b2df465197156b4b78bed673bf441011d0ce29d48a0c2ee0045" => :yosemite
|
|
|
|
sha256 "69207c24aa1f8e6ba406e6cc3f811cd7000ee14c713cc32b49d72f2c76a702bc" => :mavericks
|
|
|
|
end
|
|
|
|
|
2016-09-24 15:45:48 +00:00
|
|
|
depends_on :java => "1.5+"
|
2016-02-28 10:22:16 +00:00
|
|
|
|
2012-08-29 13:48:16 +00:00
|
|
|
def install
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make"
|
|
|
|
libexec.install %w[bin src Makefile]
|
|
|
|
bin.install_symlink libexec/"bin/drip"
|
2012-08-29 13:48:16 +00:00
|
|
|
end
|
|
|
|
end
|