package/libolm: new package

libolm is an implementation of the Double Ratchet cryptographic ratchet
described by:
https://whispersystems.org/docs/specifications/doubleratchet/

Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Gilles Talis 2019-10-13 11:30:49 +02:00 committed by Thomas Petazzoni
parent 063acf7196
commit ba3b97e3cb
5 changed files with 33 additions and 0 deletions

View File

@ -968,6 +968,7 @@ F: package/fdk-aac/
F: package/httping/
F: package/iozone/
F: package/leptonica/
F: package/libolm/
F: package/ocrad/
F: package/restclient-cpp/
F: package/tesseract-ocr/

View File

@ -1245,6 +1245,7 @@ menu "Crypto"
source "package/libmcrypt/Config.in"
source "package/libmhash/Config.in"
source "package/libnss/Config.in"
source "package/libolm/Config.in"
source "package/libp11/Config.in"
source "package/libscrypt/Config.in"
source "package/libsecret/Config.in"

12
package/libolm/Config.in Normal file
View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_LIBOLM
bool "libolm"
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
help
libolm is an implementation of the Double Ratchet
cryptographic ratchet in C++
https://gitlab.matrix.org/matrix-org/olm
comment "libolm needs a toolchain w/ C++, gcc >= 4.8"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8

View File

@ -0,0 +1,3 @@
# locally computed
sha256 1ca9926ce71d778fb7352d1ee77513194db8c7f49c0d69d38ac49ec3bafcea38 olm-3.1.4.tar.gz
sha256 0d542e0c8804e39aa7f37eb00da5a762149dc682d7829451287e11b938e94594 LICENSE

16
package/libolm/libolm.mk Normal file
View File

@ -0,0 +1,16 @@
################################################################################
#
# libolm
#
################################################################################
LIBOLM_VERSION = 3.1.4
LIBOLM_SOURCE = olm-$(LIBOLM_VERSION).tar.gz
LIBOLM_SITE = https://gitlab.matrix.org/matrix-org/olm/-/archive/$(LIBOLM_VERSION)
LIBOLM_LICENSE = Apache-2.0
LIBOLM_LICENSE_FILES = LICENSE
LIBOLM_INSTALL_STAGING = YES
LIBOLM_CONF_OPTS = -DOLM_TESTS=OFF
$(eval $(cmake-package))