2012-08-29 13:48:16 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Drip < Formula
|
|
|
|
homepage 'https://github.com/flatland/drip'
|
2014-01-15 01:41:40 +00:00
|
|
|
url 'https://github.com/flatland/drip/archive/0.2.4.tar.gz'
|
|
|
|
sha1 '6c3c4ea6395e542815c3d5a44612748cc4f1f85e'
|
2012-08-29 13:48:16 +00:00
|
|
|
|
|
|
|
def install
|
2012-09-08 14:22:14 +00:00
|
|
|
system 'make'
|
2012-08-29 13:48:16 +00:00
|
|
|
libexec.install %w{ bin src Makefile }
|
|
|
|
bin.install_symlink libexec/'bin/drip'
|
|
|
|
end
|
|
|
|
end
|