blob: b08fa5f5f52db81cc73888fadc9385103ef3a4b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Aescrypt < Formula
homepage 'http://aescrypt.sourceforge.net/'
url 'http://aescrypt.sourceforge.net/aescrypt-0.7.tar.gz'
md5 'cbec5d7f00a289944397a8079c1d3c6c'
def install
system "./configure"
system "make"
bin.install 'aescrypt', 'aesget'
end
end
|