homebrew-core/Formula/aespipe.rb
Christoph Heer 923d4b2e3a New Formula: aespipe
aespipe is an encryption tool that reads from standard input and writes to standard output.

Closes Homebrew/homebrew#7587.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-09-12 09:54:33 -07:00

13 lines
314 B
Ruby

require 'formula'
class Aespipe < Formula
url 'http://loop-aes.sourceforge.net/aespipe/aespipe-v2.4c.tar.bz2'
homepage 'http://loop-aes.sourceforge.net/'
md5 '97b1f481721ea5d65018ddae1143bac5'
version '2.4'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end