blob: 0818d3cf3c2477e51f5390e5cc8f6e2bd62cbab6 (
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
26
27
28
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils git-r3
DESCRIPTION="Menda Circle Icon Theme"
HOMEPAGE="https://github.com/manjaro/menda-icon-themes"
SRC_URI=""
EGIT_REPO_URI="${HOMEPAGE}"
LICENSE="LGPL-3.0"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="
x11-themes/hicolor-icon-theme
gnome-base/librsvg
"
RDEPEND="${DEPEND}"
src_install(){
insinto /usr/share/icons
doins -r Menda-Circle
}
|