f5c10a91fe
ccrypt is a utility for encrypting and decrypting files and streams. Signed-off-by: David Höppner <0xffea@gmail.com> * correct man path * run check
13 lines
384 B
Ruby
13 lines
384 B
Ruby
require 'formula'
|
|
|
|
class Ccrypt <Formula
|
|
url 'http://ccrypt.sourceforge.net/download/ccrypt-1.9.tar.gz'
|
|
homepage 'http://ccrypt.sourceforge.net/'
|
|
md5 'c3f78019d7a166dd66f1d4b1390c62c2'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking", "--mandir=#{man}"
|
|
system "make install"
|
|
system "make check"
|
|
end
|
|
end
|