Last active
October 11, 2017 09:57
-
-
Save pjaspers/6577968 to your computer and use it in GitHub Desktop.
Homebrew formula to install drsh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Drsh < Formula | |
homepage 'http://pjaspers.github.io/drsh/' | |
url 'https://github.com/pjaspers/drsh/archive/0.0.3.zip' | |
sha256 'c846ce952521f0723cdde9a1150a5be7b1694ba7d616a9efd1714b76be6f5206' | |
depends_on "jq" | |
depends_on "spark" | |
def install | |
bin.install "drsh" | |
end | |
test do | |
system "#{bin}/drsh" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment