288502d191
Closes Homebrew/homebrew#16169. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
320 B
Ruby
13 lines
320 B
Ruby
require 'formula'
|
|
|
|
class Drip < Formula
|
|
homepage 'https://github.com/flatland/drip'
|
|
url 'https://github.com/flatland/drip/tarball/0.1.8'
|
|
sha1 '70fa447b360c82cc411e871c052d7c073947e700'
|
|
|
|
def install
|
|
system 'make'
|
|
libexec.install %w{ bin src Makefile }
|
|
bin.install_symlink libexec/'bin/drip'
|
|
end
|
|
end
|