Skip to content

Instantly share code, notes, and snippets.

@wilmoore
Created January 19, 2012 00:48
Show Gist options
  • Save wilmoore/1636830 to your computer and use it in GitHub Desktop.
Save wilmoore/1636830 to your computer and use it in GitHub Desktop.
homebrew formula for s3dd
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
@wilmoore
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment