diff options
| author | Andrew Ayer | 2014-11-16 19:49:32 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2014-11-18 08:21:33 +0000 |
| commit | 81f4d5559ea02f2796e15ccd91d4cc59a914e278 (patch) | |
| tree | 71d1b071a484404cd4c258491f7eedc56c8110e8 /Library/Formula/git-crypt.rb | |
| parent | a6542db73b207c119e859bee8af2a12a3a3e6e50 (diff) | |
| download | homebrew-81f4d5559ea02f2796e15ccd91d4cc59a914e278.tar.bz2 | |
git-crypt 0.4
Closes #34247.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula/git-crypt.rb')
| -rw-r--r-- | Library/Formula/git-crypt.rb | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Library/Formula/git-crypt.rb b/Library/Formula/git-crypt.rb index e674c2c82..94115e3d8 100644 --- a/Library/Formula/git-crypt.rb +++ b/Library/Formula/git-crypt.rb @@ -1,9 +1,11 @@ require 'formula' class GitCrypt < Formula - homepage 'http://www.agwa.name/projects/git-crypt/' - url 'https://github.com/AGWA/git-crypt/archive/0.3.tar.gz' - sha1 '7ee53e970d8fd085ad23463120b04b4d94a47ef0' + homepage 'https://www.agwa.name/projects/git-crypt/' + url 'https://www.agwa.name/projects/git-crypt/downloads/git-crypt-0.4.tar.gz' + sha1 '18cffadc905d69e221e6f2d4ec92b013413596f3' + + depends_on "openssl" def install system "make" @@ -11,6 +13,6 @@ class GitCrypt < Formula end test do - system "#{bin}/git-crypt" + system "#{bin}/git-crypt", "keygen", "keyfile" end end |
