Skip to content

Instantly share code, notes, and snippets.

@zimbatm
Created February 7, 2013 00:25
Show Gist options
  • Save zimbatm/4727240 to your computer and use it in GitHub Desktop.
Save zimbatm/4727240 to your computer and use it in GitHub Desktop.
Homebrew formula for git-crypt
require 'formula'
class GitCrypt < Formula
homepage 'http://www.agwa.name/projects/git-crypt/'
head 'https://github.com/AGWA/git-crypt.git', :branch => 'master'
#depends_on 'openssl'
def install
system 'make'
bin.install 'git-crypt'
end
end
@zimbatm
Copy link
Author

zimbatm commented Feb 7, 2013

The system-provided openssl seems to be sufficient on my machine.

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