aespipe: new package
authorPatrick Ziegler <patrick.ziegler@fh-kl.de>
Wed, 15 May 2013 00:43:51 +0000 (00:43 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Sun, 26 May 2013 20:42:37 +0000 (22:42 +0200)
Signed-off-by: Patrick Ziegler <patrick.ziegler@fh-kl.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/Config.in
package/aespipe/Config.in [new file with mode: 0644]
package/aespipe/aespipe.mk [new file with mode: 0644]

index 6b6ce9d108372aa653e7077bf73414c4626da8eb..de84d46cd0245dcc1c0ea7c55812483f32046e92 100644 (file)
@@ -652,6 +652,7 @@ endmenu
 endmenu
 
 menu "Miscellaneous"
+source "package/aespipe/Config.in"
 source "package/collectd/Config.in"
 source "package/empty/Config.in"
 source "package/googlefontdirectory/Config.in"
diff --git a/package/aespipe/Config.in b/package/aespipe/Config.in
new file mode 100644 (file)
index 0000000..ccc94c2
--- /dev/null
@@ -0,0 +1,9 @@
+config BR2_PACKAGE_AESPIPE
+       bool "aespipe"
+       help
+         aespipe program is AES encrypting or decrypting pipe. It reads from
+         standard input and writes to standard output. It can be used to
+         create and restore encrypted tar or cpio archives. It can be used to
+         encrypt and decrypt loop-AES compatible encrypted disk images.
+
+         http://koti.tnnet.fi/jari.ruusu/linux/
diff --git a/package/aespipe/aespipe.mk b/package/aespipe/aespipe.mk
new file mode 100644 (file)
index 0000000..c901708
--- /dev/null
@@ -0,0 +1,12 @@
+#############################################################
+#
+# aespipe
+#
+#############################################################
+
+AESPIPE_VERSION = 2.4c
+AESPIPE_SOURCE = aespipe-v$(AESPIPE_VERSION).tar.bz2
+AESPIPE_SITE = http://loop-aes.sourceforge.net/aespipe/
+AESPIPE_LICENSE = GPL
+
+$(eval $(autotools-package))