homebrew-core/Formula/aescrypt.rb

14 lines
298 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
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