mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
fixes the following pkgcheck warnings:
app-misc/kloak
StaticSrcUri: version 0.2.30: '0.2.30' in SRC_URI, replace with ${PV}
Signed-off-by: ingenarel <ingenarelitems@gmail.com>
27 lines
589 B
Bash
27 lines
589 B
Bash
# Copyright 2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="A privacy tool that makes keystroke biometrics less effective"
|
|
HOMEPAGE="https://github.com/Whonix/kloak"
|
|
SRC_URI="https://gitlab.com/whonix/kloak/-/archive/${PV}-2/${P}-2.tar.bz2"
|
|
|
|
S="${WORKDIR}/${P}-2"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
CONFIG_CHECK="~UINPUT"
|
|
PATCHES=(
|
|
"${FILESDIR}"/toolchain-call.patch
|
|
)
|
|
src_install() {
|
|
dobin eventcap
|
|
dobin kloak
|
|
doman auto-generated-man-pages/eventcap.8
|
|
doman auto-generated-man-pages/kloak.8
|
|
}
|