homebrew-core/Formula/aescrypt.rb

14 lines
305 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'
sha1 '72756ccccd43a4f19796835395512616c86c273f'
2010-05-21 00:25:19 +00:00
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