aboutsummaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2018-01-17 09:34:20 +0100
committerArmin Kuster <akuster808@gmail.com>2018-01-19 14:38:11 -0800
commit0dcc67bccd59157d7fdeb3e9914f2e832a350bf4 (patch)
tree6ec926865ace79a2dbaad410c525a2722851ac73 /meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb
parent6213d06836c8ade7d232e756f7d19a2d8da57ffd (diff)
downloadmeta-openembedded-contrib-0dcc67bccd59157d7fdeb3e9914f2e832a350bf4.tar.gz
gtksourceview-classic-light: initial add 1.0
This theme is helpful when using dark themes as it keeps white background. Tested with: * oe-build gedit based on GTK2 * fedora's gedit based on GTK3 Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
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.bb21
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 0000000000..e7dc0f865c
--- /dev/null
+++ b/meta-gnome/recipes-gnome/gtksourceview/gtksourceview-classic-light_1.0.bb
@@ -0,0 +1,21 @@
+DESCRIPTION = "Gtksourceview Classic-Light theme"
+LICENSE = "LGPLv2.1"
+LIC_FILES_CHKSUM = "file://classic-light.xml;beginline=6;endline=23;md5=2b4f75364fad00a4d752214dcbd7d7c3"
+
+inherit allarch
+
+SRC_URI = "file://classic-light.xml"
+
+S = "${WORKDIR}"
+
+do_install() {
+ install -d ${D}${datadir}/gtksourceview-2.0/styles
+ install -m 0644 ${WORKDIR}/classic-light.xml ${D}${datadir}/gtksourceview-2.0/styles/
+ install -d ${D}${datadir}/gtksourceview-3.0/styles
+ install -m 0644 ${WORKDIR}/classic-light.xml ${D}${datadir}/gtksourceview-3.0/styles/
+}
+
+FILES_${PN} = " \
+ ${datadir}/gtksourceview-2.0/styles \
+ ${datadir}/gtksourceview-3.0/styles \
+"