2013-11-07 08:58:38 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Mdr < Formula
|
|
|
|
homepage "https://github.com/halffullheart/mdr"
|
2014-03-06 21:15:30 +00:00
|
|
|
url "https://github.com/halffullheart/mdr/archive/v1.0.0.tar.gz"
|
|
|
|
sha1 "4e2424363aa72f7e94997c91594f1f1c7901587d"
|
2013-11-07 08:58:38 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "rake"
|
|
|
|
system "rake", "release"
|
|
|
|
libexec.install Dir['release/*']
|
|
|
|
bin.install_symlink libexec+'mdr'
|
|
|
|
end
|
|
|
|
end
|