gentoo-ebuilds/www-apps/vaultwarden-web/vaultwarden-web-2025.7.1.ebuild
Rahil Bhimjiani 51b694d40c
www-apps/vaultwarden-web: update to 2025.7.1
Signed-off-by: Rahil Bhimjiani <me@rahil.rocks>
Part-of: https://github.com/gentoo/gentoo/pull/43394
Closes: https://github.com/gentoo/gentoo/pull/43394
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2025-08-09 09:29:38 +03:00

22 lines
635 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Prebuilt web vault frontend for Vaultwarden"
HOMEPAGE="https://github.com/dani-garcia/bw_web_builds"
SRC_URI="https://github.com/dani-garcia/bw_web_builds/releases/download/v${PV}/bw_web_v${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/web-vault"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
# this package is really useless without vaultwarden, it cannot be run
# standalone, so pull in vaultwarden to run it
PDEPEND="app-admin/vaultwarden[web]"
src_install() {
insinto /usr/share/webapps/"${PN}"
doins -r *
}