2023-03-14 21:19:30 +03:00
|
|
|
# Copyright 1999-2023 Gentoo Authors
|
2021-10-02 00:12:16 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
|
|
|
DESCRIPTION="Web interface for airdcpp-webclient"
|
|
|
|
HOMEPAGE="https://airdcpp-web.github.io/"
|
|
|
|
SRC_URI="https://registry.npmjs.org/${PN}/-/${P}.tgz"
|
|
|
|
|
2023-05-25 15:03:36 +03:00
|
|
|
KEYWORDS="amd64 ~riscv x86"
|
2021-10-02 00:12:16 +03:00
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
RDEPEND="=net-p2p/airdcpp-webclient-${PV%.*}*"
|
|
|
|
|
|
|
|
S="${WORKDIR}/package"
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
insinto "/usr/share/airdcpp/web-resources"
|
|
|
|
doins -r dist/.
|
|
|
|
}
|