aboutsummaryrefslogtreecommitdiffstats
path: root/libtomcrypt
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2004-02-15 01:02:09 +0000
committerMichael Lauer <mickey@vanille-media.de>2004-02-15 01:02:09 +0000
commit543d9c7290cedf74678ca82cd2beecffecf94fb7 (patch)
tree6206f2f32e3d65316def5e03b71ccb35b0fe5ece /libtomcrypt
parenta1979e24892c35ac93ed77d4b040ab6dcd26c0cf (diff)
downloadopenembedded-543d9c7290cedf74678ca82cd2beecffecf94fb7.tar.gz
add libdes (DES encryption library)
BKrev: 402ec511B9a0FmR7HsGiOLj1TIp72g
Diffstat (limited to 'libtomcrypt')
-rw-r--r--libtomcrypt/libtomcrypt_0.93.oe22
1 files changed, 22 insertions, 0 deletions
diff --git a/libtomcrypt/libtomcrypt_0.93.oe b/libtomcrypt/libtomcrypt_0.93.oe
index e69de29bb2..7ac810d31c 100644
--- a/libtomcrypt/libtomcrypt_0.93.oe
+++ b/libtomcrypt/libtomcrypt_0.93.oe
@@ -0,0 +1,22 @@
+DESCRIPTION=LibTomCrypt is a fairly comprehensive, modular and portable cryptographic toolkit that provides developers \
+with a vast array of well known published block ciphers, one-way hash functions, chaining modes, pseudo-random number \
+generators, public key cryptography and a plethora of other routines.
+SECTION="libs"
+PRIORITY="optional"
+RDEPENDS="libc6"
+DEPENDS=virtual/libc
+
+#FIXME add dependencies for pdflatex or whatever that package uses to create docs
+
+SRC_URI = http://libtomcrypt.org/files/crypt-${PV}.tar.bz2 \
+ file://${FILESDIR}/install.patch;patch=1
+
+inherit autotools libtool
+
+#FIXME add patch to make it shared
+
+do_stage() {
+ install -m 0755 libtomcrypt.a ${STAGING_LIBDIR}/
+ install -m 0644 *.h ${STAGING_INCDIR}/
+}
+