]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
ccrypt: new package
authorDavid Bachelart <david.bachelart@bbright.com>
Wed, 9 Jul 2014 12:33:45 +0000 (14:33 +0200)
committerPeter Korsgaard <peter@korsgaard.com>
Thu, 10 Jul 2014 08:53:40 +0000 (10:53 +0200)
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>
package/Config.in
package/ccrypt/Config.in [new file with mode: 0644]
package/ccrypt/ccrypt.mk [new file with mode: 0644]

index f30c25f62f018568deca1f3db471536e6181881e..c62696836dae0d449f0d37f102e7d0516d76efc5 100644 (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"
diff --git a/package/ccrypt/Config.in b/package/ccrypt/Config.in
new file mode 100644 (file)
index 0000000..99c4d47
--- /dev/null
@@ -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/
diff --git a/package/ccrypt/ccrypt.mk b/package/ccrypt/ccrypt.mk
new file mode 100644 (file)
index 0000000..bd48638
--- /dev/null
@@ -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))