homebrew-core/Formula/drip.rb
Justin Balthrop d1ed67e3b6 drip 0.2.2
Closes Homebrew/homebrew#17333.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-26 17:04:10 -08:00

13 lines
320 B
Ruby

require 'formula'
class Drip < Formula
homepage 'https://github.com/flatland/drip'
url 'https://github.com/flatland/drip/tarball/0.2.2'
sha1 '21036ee36bf1bcd67808e9fc6cdc18d829360689'
def install
system 'make'
libexec.install %w{ bin src Makefile }
bin.install_symlink libexec/'bin/drip'
end
end