mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Yixun Lan <dlan@gentoo.org>
25 lines
587 B
Bash
25 lines
587 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="A GTK theme to match Enlightenment WM's default theme"
|
|
HOMEPAGE="https://gitlab.com/tokiclover/e-gtk-theme"
|
|
SRC_URI="https://gitlab.com/tokiclover/${PN}/-/archive/${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="BSD-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~riscv x86"
|
|
|
|
src_prepare() {
|
|
default
|
|
find . -name 'Makefile' -delete || die
|
|
}
|
|
|
|
src_install() {
|
|
insinto /usr/share/themes/e-gtk-theme
|
|
doins -r apps/ gtk-2.0/ gtk-3.0/ metacity-1/ openbox-3/ index.theme start-here.png
|
|
|
|
einstalldocs
|
|
}
|