homebrew-core/Formula/aescrypt.rb

14 lines
296 B
Ruby
Raw Normal View History

2010-05-21 00:25:19 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Aescrypt < Formula
2010-05-21 00:25:19 +00:00
homepage 'http://aescrypt.sourceforge.net/'
2012-02-13 04:25:10 +00:00
url 'http://aescrypt.sourceforge.net/aescrypt-0.7.tar.gz'
2010-05-21 00:25:19 +00:00
md5 'cbec5d7f00a289944397a8079c1d3c6c'
def install
system "./configure"
system "make"
2012-02-13 04:25:10 +00:00
bin.install 'aescrypt', 'aesget'
2010-05-21 00:25:19 +00:00
end
end