Created
January 19, 2012 00:48
-
-
Save wilmoore/1636830 to your computer and use it in GitHub Desktop.
homebrew formula for s3dd
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 S3dd < Formula | |
head 'https://github.com/Net-Results/s3dd.git' | |
homepage 'https://github.com/Net-Results/s3dd' | |
def install | |
system "chmod a+x s3dd" | |
system "mkdir -p #{prefix}/bin" | |
system "cp s3dd #{prefix}/bin" | |
end | |
def test | |
system 's3dd' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
brew install --HEAD https://raw.github.com/gist/1636830/s3dd.rb