homebrew-core/Formula/mdr.rb

14 lines
316 B
Ruby
Raw Normal View History

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"
2014-06-25 22:18:00 +00:00
libexec.install Dir["*"]
bin.install_symlink libexec+'mdr'
end
end