blob: bd6d596041e9e4b7c624fd2017f1934f578c2a22 (
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.2.3'
sha1 '34ac75d9468d97f7b1fea806be9e7e821a3579d3'
def install
system 'make'
libexec.install %w{ bin src Makefile }
bin.install_symlink libexec/'bin/drip'
end
end
|