aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aescrypt.rb
blob: c8e037e48045881d07132d5598b5e85095048116 (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