blob: 3248e85671c83c6904cee25fb1811e7416ed67c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|