--- /dev/null
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Implementation of the olm and megolm cryptographic ratchets"
+HOMEPAGE="https://gitlab.matrix.org/matrix-org/olm"
+SRC_URI="https://gitlab.matrix.org/matrix-org/olm/-/archive/master/olm-master.tar.gz"
+
+LICENSE="Apache"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_configure() {
+ local mycmakeargs=(
+ -DOLM_TESTS=ON
+ )
+ cmake_src_configure
+}
+
+src_unpack() {
+ unpack ${A}
+ mv ${WORKDIR}/olm-master ${WORKDIR}/${P}
+}