sys-boot/plymouth-dracula-theme - 9999 (wayland-desktop)

Search

Install

Install this version:

emerge -a =sys-boot/plymouth-dracula-theme-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-boot/plymouth-dracula-theme-9999

Or alternatively:

emerge --autounmask-write -a =sys-boot/plymouth-dracula-theme-9999

Package Information

Description:
dracula theme for plymouth
Homepage:
https://github.com/dracula/plymouth
License:
GPL-3

Ebuild Details

Version EAPI Keywords Slot
9999 8 ~amd64 0
View Raw Ebuild
# Copyright 2021 Aisha Tammy
# Distributed under the terms of the ISC License

EAPI=8

DESCRIPTION="dracula theme for plymouth"
HOMEPAGE="https://github.com/dracula/plymouth"

if [[ "${PV}" == "9999" ]]; then
	inherit git-r3
	EGIT_REPO_URI="https://github.com/dracula/plymouth"
else
	COMMIT="37aa09b27ecee4a825b43d2c1d20b502e8f19c96"
	SRC_URI="https://github.com/dracula/plymouth/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64"
	S="${WORKDIR}/dracula-plymouth-${COMMIT}"
fi

LICENSE="GPL-3"
SLOT="0"

src_install() {
	insinto /usr/share/plymouth/themes
	doins -r dracula
}

Inherited Eclasses