summaryrefslogtreecommitdiffstats
path: root/chat-libs
diff options
context:
space:
mode:
authorIsmael Luceno2020-11-12 19:59:58 +0100
committerIsmael Luceno2020-11-13 21:50:17 +0100
commit32f4e99bef50d24df950bfcdd2c80c08897a1d10 (patch)
tree82f93eb6bd9f9b07391bb34e89bd7f67a272bad8 /chat-libs
parent13bd6edf95ea6c1d760c36baf1a14ea3482afd5f (diff)
olm: new spell, Implementation of the olm and megolm cryptographic ratchets
Diffstat (limited to 'chat-libs')
-rwxr-xr-xchat-libs/olm/CONFIGURE1
-rwxr-xr-xchat-libs/olm/DEPENDS1
-rwxr-xr-xchat-libs/olm/DETAILS17
-rw-r--r--chat-libs/olm/HISTORY2
4 files changed, 21 insertions, 0 deletions
diff --git a/chat-libs/olm/CONFIGURE b/chat-libs/olm/CONFIGURE
new file mode 100755
index 0000000000..b1e2770061
--- /dev/null
+++ b/chat-libs/olm/CONFIGURE
@@ -0,0 +1 @@
+. "$GRIMOIRE"/CMAKE_CONFIGURE
diff --git a/chat-libs/olm/DEPENDS b/chat-libs/olm/DEPENDS
new file mode 100755
index 0000000000..60dd6147cc
--- /dev/null
+++ b/chat-libs/olm/DEPENDS
@@ -0,0 +1 @@
+depends cmake
diff --git a/chat-libs/olm/DETAILS b/chat-libs/olm/DETAILS
new file mode 100755
index 0000000000..95816dcee4
--- /dev/null
+++ b/chat-libs/olm/DETAILS
@@ -0,0 +1,17 @@
+. "$GRIMOIRE"/CMAKE_FUNCTIONS
+ SPELL=olm
+ VERSION=3.2.1
+ SOURCE="$SPELL-$VERSION.tar.bz2"
+ SOURCE_URL[0]=https://gitlab.matrix.org/matrix-org/$SPELL/-/archive/$VERSION/$SOURCE
+ SOURCE_HASH=sha512:adb9cff6148d19df4b83a287723219d4da9efd162f7a2824bee63d824d22c20a10fd2c2d8ce74aff5ec006c6dc8828bd6851cc82be93bc6c4524cf7067080412
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ WEB_SITE="https://gitlab.matrix.org/matrix-org/olm/"
+ LICENSE[0]="Apache-2.0"
+ ENTERED=20201112
+ KEYWORDS=""
+ SHORT="Implementation of the olm and megolm cryptographic ratchets"
+cat << EOF
+An implementation of the Double Ratchet cryptographic ratchet described by
+https://whispersystems.org/docs/specifications/doubleratchet/, written in
+C and C++11 and exposed as a C API.
+EOF
diff --git a/chat-libs/olm/HISTORY b/chat-libs/olm/HISTORY
new file mode 100644
index 0000000000..ff8091b8b7
--- /dev/null
+++ b/chat-libs/olm/HISTORY
@@ -0,0 +1,2 @@
+2020-11-12 Ismael Luceno <ismael@sourcemage.org>
+ * CONFIGURE, DEPENDS, DETAILS: spell created