diff options
Diffstat (limited to 'meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb')
-rw-r--r-- | meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb b/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb new file mode 100644 index 000000000..e7dc0f865 --- /dev/null +++ b/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | DESCRIPTION = "Gtksourceview Classic-Light theme" | ||
2 | LICENSE = "LGPLv2.1" | ||
3 | LIC_FILES_CHKSUM = "file://classic-light.xml;beginline=6;endline=23;md5=2b4f75364fad00a4d752214dcbd7d7c3" | ||
4 | |||
5 | inherit allarch | ||
6 | |||
7 | SRC_URI = "file://classic-light.xml" | ||
8 | |||
9 | S = "${WORKDIR}" | ||
10 | |||
11 | do_install() { | ||
12 | install -d ${D}${datadir}/gtksourceview-2.0/styles | ||
13 | install -m 0644 ${WORKDIR}/classic-light.xml ${D}${datadir}/gtksourceview-2.0/styles/ | ||
14 | install -d ${D}${datadir}/gtksourceview-3.0/styles | ||
15 | install -m 0644 ${WORKDIR}/classic-light.xml ${D}${datadir}/gtksourceview-3.0/styles/ | ||
16 | } | ||
17 | |||
18 | FILES_${PN} = " \ | ||
19 | ${datadir}/gtksourceview-2.0/styles \ | ||
20 | ${datadir}/gtksourceview-3.0/styles \ | ||
21 | " | ||