blob: 3a1f1399f1eaebdd931305f3693fd18215b2485e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 2015 Rogentos
# Distributed under the terms of the GNU General Public License v3
EAPI=5
inherit eutils git-2
DESCRIPTION="Official Redcore Linux LXQT theme"
HOMEPAGE="http://redcorelinux.org"
EGIT_BRANCH="master"
EGIT_REPO_URI="https://gitlab.com/redcore/redcore-theme-lxqt.git"
LICENSE="GPLv3"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE=""
RDEPEND=""
src_install() {
rm README.md
dodir /usr/share/lxqt/themes
insinto /usr/share/lxqt/themes
doins -r *
}
|