blob: 737bc63900c599bd2bb8a79a559bbee2de51fd73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
require 'formula'
class GitCrypt < Formula
homepage 'http://www.agwa.name/projects/git-crypt/'
url 'https://github.com/AGWA/git-crypt/archive/0.2.tar.gz'
sha1 '683c4b7f520a3ad4c5b56c3fdf8ea6c9d4362f87'
def install
system "make"
bin.install "git-crypt"
end
def test
system "#{bin}/git-crypt"
end
end
|