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