mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
28 lines
574 B
Bash
28 lines
574 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_PV="$(ver_rs 3 a)"
|
|
|
|
DESCRIPTION="A fork of password-store using age as encryption backend"
|
|
HOMEPAGE="https://github.com/FiloSottile/passage"
|
|
SRC_URI="https://github.com/FiloSottile/${PN}/archive/refs/tags/${MY_PV}.tar.gz"
|
|
|
|
S="${WORKDIR}/${PN}-${MY_PV}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
IUSE="wayland git"
|
|
|
|
RDEPEND="
|
|
app-crypt/age
|
|
app-shells/bash
|
|
>=app-text/tree-1.7.0
|
|
sys-apps/coreutils
|
|
wayland? ( gui-apps/wl-clipboard )
|
|
git? ( dev-vcs/git )
|
|
"
|