923d4b2e3a
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>
13 lines
314 B
Ruby
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
|