You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.3 KiB
63 lines
1.3 KiB
# Copyright 2021-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit gnome2-utils optfeature
|
|
|
|
EGIT_COMMIT="f7cbe060e8d293bfe3b0b759032a85773b542645"
|
|
|
|
DESCRIPTION="Keyboard-driven layer for GNOME Shell with tiling support"
|
|
HOMEPAGE="https://github.com/pop-os/shell"
|
|
SRC_URI="https://github.com/pop-os/shell/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc64"
|
|
IUSE=""
|
|
|
|
RDEPEND="
|
|
app-eselect/eselect-gnome-shell-extensions
|
|
>=gnome-base/gnome-shell-40.1
|
|
"
|
|
|
|
DEPEND=""
|
|
BDEPEND="dev-lang/typescript"
|
|
|
|
S="${WORKDIR}/shell-${EGIT_COMMIT}"
|
|
|
|
src_install() {
|
|
default
|
|
|
|
insinto /usr/share/glib-2.0/schemas
|
|
doins schemas/org.gnome.shell.extensions.pop-shell.gschema.xml
|
|
|
|
exeinto /usr/lib/pop-shell/scripts
|
|
doexe scripts/configure.sh
|
|
|
|
insinto /usr/share/gnome-control-center/keybindings
|
|
doins keybindings/*.xml
|
|
}
|
|
|
|
pkg_postinst() {
|
|
ebegin "Updating list of installed extensions"
|
|
eselect gnome-shell-extensions update
|
|
eend $?
|
|
|
|
gnome2_schemas_update
|
|
|
|
echo
|
|
einfo "To configure keybindings run /usr/lib/pop-shell/scripts/configure.sh"
|
|
echo
|
|
|
|
optfeature gnome-extra/gnome-shell-extensions "better tiling via native-window-placement"
|
|
}
|
|
|
|
pkg_postrm() {
|
|
ebegin "Updating list of installed extensions"
|
|
eselect gnome-shell-extensions update
|
|
eend $?
|
|
|
|
gnome2_schemas_update
|
|
}
|