aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mdr.rb
blob: cf21f1ff6b24481bac64a4c6accab1d8bbe005d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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