aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBrice Dutheil2012-08-29 15:48:16 +0200
committerAdam Vandenberg2012-08-30 07:17:41 -0700
commit251ff3ceb5eb41d9724be16e1416f46874d03a6b (patch)
treea6ca96f8e6c2cc67f198813f7fb05b39c4845ae2 /Library/Formula
parent08df701bffd2b422bfcb2aed7be2a44cf0835719 (diff)
downloadhomebrew-251ff3ceb5eb41d9724be16e1416f46874d03a6b.tar.bz2
drip 0.0.3
Closes #14520. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/drip.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/drip.rb b/Library/Formula/drip.rb
new file mode 100644
index 000000000..282c7bd74
--- /dev/null
+++ b/Library/Formula/drip.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Drip < Formula
+ homepage 'https://github.com/flatland/drip'
+ url 'https://github.com/flatland/drip/tarball/0.0.3'
+ sha1 '6cd5d2346314e3adda71ceeccf037e863b12c8c3'
+
+ def install
+ libexec.install %w{ bin src Makefile }
+ bin.install_symlink libexec/'bin/drip'
+ end
+end