blob: cbe9f77693049cacfaec5fcf1b61874a3fe238b5 (
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.8'
sha1 '70fa447b360c82cc411e871c052d7c073947e700'
def install
system 'make'
libexec.install %w{ bin src Makefile }
bin.install_symlink libexec/'bin/drip'
end
end
|