aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/drip.rb
blob: 7b6623727a73fe48d5cca5aa23c77dc2dcb1f80a (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.2'
  sha1 '21036ee36bf1bcd67808e9fc6cdc18d829360689'

  def install
    system 'make'
    libexec.install %w{ bin src Makefile }
    bin.install_symlink libexec/'bin/drip'
  end
end