blob: d0a5494beed27f9daa07fccabb8bd39982f828e2 (
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
# $Id$
EAPI=5
inherit git-r3 vala
DESCRIPTION="a highly customizable chameleon theme for Gnome Shell"
HOMEPAGE="https://github.com/satya164/elegance-colors"
EGIT_REPO_URI="https://github.com/satya164/${PN}.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}
$(vala_depend)"
src_prepare() {
vala_src_prepare
sed -i -e "s/CC/VALAC/" Makefile
}
src_compile() {
emake VALAC=${VALAC}
}
|