mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
Related: ab9f93926f (commitcomment-39401778)
Signed-off-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
29 lines
532 B
Bash
29 lines
532 B
Bash
# Copyright 2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="reasonable expectation of privacy"
|
|
HOMEPAGE="https://flak.tedunangst.com/post/reop"
|
|
SRC_URI="https://flak.tedunangst.com/files/reop-2.1.1.tgz"
|
|
LICENSE="ISC"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="dev-libs/libsodium:="
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
emake CC="${CC:-cc}" CFLAGS="${CFLAGS}"
|
|
}
|
|
|
|
src_test() {
|
|
cd ./tests || die
|
|
source test.sh || die
|
|
cd .. || die
|
|
}
|
|
src_install() {
|
|
dobin reop
|
|
doman reop.1
|
|
}
|