homebrew-core/Formula/drip.rb
Justin Balthrop 98b5e635c7 drip 0.1.4
Closes Homebrew/homebrew#14807.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-08 11:35:03 -07: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.1.4'
sha1 '564ebb5971d0366fe5e19da074b2bdf3494ac655'
def install
system 'make'
libexec.install %w{ bin src Makefile }
bin.install_symlink libexec/'bin/drip'
end
end