blob: 93b730a6649945dd49e17c4a9c0a0864ee0f7e17 (
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
|
DESCRIPTION = "o2 theme for the elementary toolkit - it looks like om2007.2"
SECTION = "e/utils"
HOMEPAGE = "http://jmccloud.jm.funpic.de"
AUTHOR = "Jesus McCloud <bernd.pruenster@gmail.com"
DEPENDS = "edje-native"
RSUGGESTS_${PN} = "phoneui-shr-theme-o2"
LICENSE = "unknown"
SRCREV = "b5eb3134850c277ad8ae1a960b03ff4a509278a8"
PV = "0.1-${EFL_SRCREV}+gitr${SRCPV}"
PR = "r1"
SRC_URI = "git://git.shr-project.org/repo/shr-themes.git;protocol=http;branch=master \
"
S = "${WORKDIR}/git/elementary/${PN}"
do_compile() {
${STAGING_BINDIR_NATIVE}/edje_cc -id ${S}/. -fd ${S}/. ${S}/o2.edc -o ${S}/o2.edj
}
do_install() {
install -d ${D}${datadir}/elementary/themes/
install -m 0644 ${S}/o2.edj ${D}${datadir}/elementary/themes/
}
FILES_${PN} = "${datadir}/elementary/themes/"
|