35 lines
647 B
Bash
35 lines
647 B
Bash
# Copyright 2020-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION=" Web client for Polaris "
|
|
HOMEPAGE="https://github.com/agersant/polaris-web"
|
|
|
|
EGIT_REPO_URI="https://github.com/agersant/polaris-web.git"
|
|
|
|
|
|
# LICENSE=""
|
|
SLOT="0"
|
|
|
|
BDEPEND="
|
|
"
|
|
|
|
|
|
|
|
src_unpack() {
|
|
git-r3_src_unpack
|
|
}
|
|
|
|
src_install() {
|
|
# install src assets index.html playwright.config.ts postcss.config.js tailwind.config.js vite.config.ts
|
|
insinto /etc/polaris/web/
|
|
dodir /etc/polaris/web
|
|
doins index.html playwright.config.ts tailwind.config.js vite.config.ts
|
|
|
|
cp -r src assets ${D}/etc/polaris/web/
|
|
}
|