ccrypt: new package

ccrypt is a utility for encrypting and decrypting files and streams.

Signed-off-by: David Bachelart <david.bachelart@bbright.com>
Reviewed-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
David Bachelart 2014-07-09 14:33:45 +02:00 committed by Peter Korsgaard
parent 07ac045655
commit e235ff310a
3 changed files with 20 additions and 0 deletions

View File

@ -1094,6 +1094,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
endif
comment "Utilities"
source "package/at/Config.in"
source "package/ccrypt/Config.in"
source "package/dialog/Config.in"
source "package/dtach/Config.in"
source "package/file/Config.in"

6
package/ccrypt/Config.in Normal file
View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_CCRYPT
bool "ccrypt"
help
ccrypt is a utility for encrypting and decrypting files and streams.
http://ccrypt.sourceforge.net/

13
package/ccrypt/ccrypt.mk Normal file
View File

@ -0,0 +1,13 @@
################################################################################
#
# ccrypt
#
################################################################################
CCRYPT_VERSION = 1.10
CCRYPT_SITE = http://ccrypt.sourceforge.net/download/
CCRYPT_LICENSE = GPLv2+
CCRYPT_LICENSE_FILES = COPYING
$(eval $(autotools-package))