blob: 7e557507b7c981f226a0ace0a3f2779db73aec1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="An implementation of the Double Ratchet cryptographic ratchet in C++"
HOMEPAGE="https://git.matrix.org/git/${PN}/about/"
inherit eutils
if [[ ${PV} != "9999" ]]; then
KEYWORDS="~amd64 ~x86"
fi
SRC_URI="https://git.matrix.org/git/${PN}/snapshot/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
|