mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-09 23:23:00 -04:00
26 lines
459 B
Bash
26 lines
459 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="Soothing pastel theme for btop"
|
|
HOMEPAGE="https://github.com/catppuccin"
|
|
|
|
SRC_URI="
|
|
https://github.com/catppuccin/btop/releases/download/${PV}/themes.tar.gz -> ${P}.tar.gz
|
|
"
|
|
S="${WORKDIR}/themes"
|
|
|
|
RDEPEND="
|
|
sys-process/btop
|
|
"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
src_install() {
|
|
insinto "/usr/share/btop/themes"
|
|
doins *.theme
|
|
}
|