blob: 412091d59530af34bc7565a0644b0ec22a8ff800 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
 | # Copyright 2020 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/${PN}/-/archive/${PV}/${P}.tar.bz2"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="doc test"
KEYWORDS="~amd64"
RDEPEND=""
DEPEND="${RDEPEND}"
src_configure() {
	local -a mycmakeargs=(
		-DOLM_TESTS="$(usex test)"
	)
	cmake_src_configure
}
src_test() {
	BUILD_DIR="${BUILD_DIR}/tests" cmake_src_test
}
src_install() {
	use doc && DOCS=( README.md docs/{{,meg}olm,signing}.md )
	cmake_src_install
}
 |