diff options
author | V3n3RiX <venerix@koprulu.sector> | 2024-10-05 00:19:30 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2024-10-05 00:19:30 +0100 |
commit | b0b50fabb3f109e29704d12f4215ab003f72b482 (patch) | |
tree | 9a7f1017ed4ef4387bfa9208745b5e2cd03c868a /app-misc/redcore-skel/redcore-skel-1.314.1337-r10.ebuild | |
parent | 2f7ff82679e87b2b17e04e968cd94c382f9597f6 (diff) |
app-misc/redcore-skel : revision bump
Diffstat (limited to 'app-misc/redcore-skel/redcore-skel-1.314.1337-r10.ebuild')
-rw-r--r-- | app-misc/redcore-skel/redcore-skel-1.314.1337-r10.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/app-misc/redcore-skel/redcore-skel-1.314.1337-r10.ebuild b/app-misc/redcore-skel/redcore-skel-1.314.1337-r10.ebuild new file mode 100644 index 00000000..3657c4fe --- /dev/null +++ b/app-misc/redcore-skel/redcore-skel-1.314.1337-r10.ebuild @@ -0,0 +1,49 @@ +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=8 +EGIT_REPO_URI="https://pagure.io/redcore/redcore-skel.git" + +inherit desktop git-r3 + +DESCRIPTION="Redcore Linux skel tree" +HOMEPAGE="https://redcorelinux.org" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" +DEPEND="" +RDEPEND=" + media-fonts/fontawesome + media-fonts/roboto + x11-themes/material-icon-theme + x11-themes/redcore-artwork-community + x11-themes/redcore-artwork-core + x11-themes/redcore-artwork-grub + x11-themes/redcore-theme + x11-themes/redcore-theme-sddm" +S="${WORKDIR}/${P}/skel" + +src_install () { + local SKEL_HOME="/etc/skel" + dodir "${SKEL_HOME}" + insinto "${SKEL_HOME}" + doins -r * + doins -r .* + fperms 755 "${SKEL_HOME}"/.config/autostart/scripts/disable-dpms.sh + fperms 755 "${SKEL_HOME}"/.config/qtile/scripts/autostart.sh + + local XDG_HOME="/etc/xdg" + dodir "${XDG_HOME}"/autostart + insinto "${XDG_HOME}"/autostart + doins "${FILESDIR}"/loginsound.desktop + + local SND_HOME="/usr/share/sounds" + dodir "${SND_HOME}" + insinto "${SND_HOME}" + doins "${FILESDIR}"/redcore.ogg + + doicon "${FILESDIR}"/redcore-weblink.svg + + rm -rvf "${D}"/etc/.git +} |