blob: 3da911ec1d252140b47f44dce620f69bbc89b96c (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
inherit grub2-theme
MY_PN=deepin-grub2-themes
MY_PV=a089b317d0169ca13946ff0d9ef7383cfd893afd
DESCRIPTION="Grub2 GFX theme Deepin"
HOMEPAGE="https://github.com/linuxdeepin/deepin-grub2-themes"
SRC_URI="https://github.com/linuxdeepin/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
LICENSE="all-rights-reserved" # no information on licensing found
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
S=${WORKDIR}/${MY_PN}-${MY_PV}
RESTRICT="bindist mirror"
src_install() {
insinto "${GRUB2_THEME_DIR}"
doins -r ${PN}
}
|