aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mdr.rb
blob: 9aa93b76d7f23c48702a244829fb62cd1575fcda (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.tar.gz"
  sha1 "4e2424363aa72f7e94997c91594f1f1c7901587d"

  def install
    system "rake"
    system "rake", "release"
    libexec.install Dir['release/*']
    bin.install_symlink libexec+'mdr'
  end
end