aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/aescrypt.rb
blob: 2e74b08f6ba38c3a61d1f6489b765e3cf0e02d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Aescrypt < Formula
  homepage 'http://aescrypt.sourceforge.net/'
  url 'http://aescrypt.sourceforge.net/aescrypt-0.7.tar.gz'
  sha1 '72756ccccd43a4f19796835395512616c86c273f'

  def install
    system "./configure"
    system "make"
    bin.install 'aescrypt', 'aesget'
  end
end