homebrew-core/Formula/mdr.rb
Erwann Mest d2d5069c5b Make Diff Readable 1.0.0
Closes Homebrew/homebrew#24050.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-20 21:48:35 -08:00

14 lines
350 B
Ruby

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