27 lines
672 B
Bash
27 lines
672 B
Bash
# Copyright 2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Suite of configurations and advanced modifications for Mozilla Firefox"
|
|
HOMEPAGE="https://phoenix.celenity.dev"
|
|
SRC_URI="https://codeberg.org/celenity/Phoenix/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
S="${WORKDIR}/${PN}"
|
|
|
|
RDEPEND="www-client/firefox:*"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_install() {
|
|
insinto /usr/lib/firefox
|
|
doins linux/phoenix.cfg
|
|
insinto /etc/firefox/defaults/pref
|
|
doins linux/defaults/pref/phoenix-desktop.js
|
|
insinto /etc/firefox/policies
|
|
doins linux/policies/policies.json
|
|
dodoc README.md
|
|
}
|