blob: 5fade77683ab5c99cb5b1aa94f64ef8a7de6f41a (
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/archive/0.2.4.tar.gz'
sha1 '6c3c4ea6395e542815c3d5a44612748cc4f1f85e'
def install
system 'make'
libexec.install %w{ bin src Makefile }
bin.install_symlink libexec/'bin/drip'
end
end
|