blob: 6adf183d9e53a22696586b70c6dc2d666e371bd2 (
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.3.tar.gz'
sha1 '7ee53e970d8fd085ad23463120b04b4d94a47ef0'
def install
system "make"
bin.install "git-crypt"
end
def test
system "#{bin}/git-crypt"
end
end
|