aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorErwann Mest2013-11-07 09:58:38 +0100
committerAdam Vandenberg2014-02-20 21:48:35 -0800
commit40a8c7b4e7fcc6687a908e9ed12bc1c40e606bec (patch)
treebd398908ea22042f5660dd62c8a9ed5d0a44d72e /Library/Formula
parent8c816696c113e94455e65f2a587836be95f73857 (diff)
downloadhomebrew-40a8c7b4e7fcc6687a908e9ed12bc1c40e606bec.tar.bz2
Make Diff Readable 1.0.0
Closes #24050. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mdr.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/mdr.rb b/Library/Formula/mdr.rb
new file mode 100644
index 000000000..cf21f1ff6
--- /dev/null
+++ b/Library/Formula/mdr.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Mdr < Formula
+ homepage "https://github.com/halffullheart/mdr"
+ url "https://github.com/halffullheart/mdr/archive/v1.0.0.zip"
+ sha1 "46f9146e103b9ac8132f773ee6d7903dac066b65"
+
+ def install
+ system "rake"
+ system "rake", "release"
+ libexec.install Dir['release/*']
+ bin.install_symlink libexec+'mdr'
+ end
+end