2013-02-07 01:14:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class GitCrypt < Formula
|
|
|
|
homepage 'http://www.agwa.name/projects/git-crypt/'
|
2013-04-06 20:33:19 +00:00
|
|
|
url 'https://github.com/AGWA/git-crypt/archive/0.3.tar.gz'
|
|
|
|
sha1 '7ee53e970d8fd085ad23463120b04b4d94a47ef0'
|
2013-02-07 01:14:13 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
bin.install "git-crypt"
|
|
|
|
end
|
|
|
|
|
2014-02-23 21:31:41 +00:00
|
|
|
test do
|
2013-02-07 01:14:13 +00:00
|
|
|
system "#{bin}/git-crypt"
|
|
|
|
end
|
|
|
|
end
|