4cd0935be7
Closes Homebrew/homebrew#26942. Closes Homebrew/homebrew#26946. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
327 B
Ruby
16 lines
327 B
Ruby
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'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install "git-crypt"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/git-crypt"
|
|
end
|
|
end
|