olm-9999.ebuild (534B)
1 # Copyright 2021 Gentoo Authors 2 # Distributed under the terms of the GNU General Public License v2 3 4 EAPI=7 5 6 inherit cmake 7 8 DESCRIPTION="An implementation of the Double Ratchet cryptographic ratchet in C++" 9 HOMEPAGE="https://git.matrix.org/git/olm/about/" 10 11 if [[ "${PV}" == 9999 ]]; then 12 inherit git-r3 13 EGIT_REPO_URI="https://gitlab.matrix.org/matrix-org/${PN}.git" 14 else 15 SRC_URI="https://gitlab.matrix.org/matrix-org/${PN}/-/archive/${PV}/${P}.tar.bz2" 16 KEYWORDS="~amd64 ~x86" 17 fi 18 19 LICENSE="GPL-3" 20 SLOT="0/$(ver_cut 1)" 21 IUSE="debug"