blob: 0e698bfe2931325f057fa3007b15e31615c5cccf (
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-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MY_AUTHOR="snwh"
inherit autotools
DESCRIPTION="the Paper gtk theme by snwh"
HOMEPAGE="https://github.com/${MY_AUTHOR}/${PN}"
SRC_URI="https://github.com/${MY_AUTHOR}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 x86"
LICENSE="GPL-3"
SLOT="0"
DEPEND="x11-themes/gtk-engines
x11-libs/gdk-pixbuf"
RDEPEND="${DEPEND}"
src_prepare() {
eautoreconf
}
src_install() {
insinto /usr/share/themes/
doins -r Paper
dodoc README.md
}
|