d2d5069c5b
Closes Homebrew/homebrew#24050. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
350 B
Ruby
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
|