1
0
forked from brl/citadel

Setup icons/default/index.theme to inherit Paper cursor theme, closes #12

This commit is contained in:
David McKinney 2018-07-20 17:13:12 -04:00
parent 0bd35c4ba1
commit 5755f77984
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,3 @@
[Icon Theme]
Inherits=Paper

View File

@ -3,7 +3,9 @@ LICENSE = "CC-BY-SA-4.0"
LIC_FILES_CHKSUM = "file://COPYING;md5=8335471e369a410f354d5179fdcf0195 \
file://LICENSE;md5=4a312f184ff2ceafe9466cbb7ea43f4e"
SRC_URI = "https://github.com/snwh/paper-icon-theme/archive/v1.4.0.tar.gz;downloadfilename=paper-icon-theme-${PV}.tar.gz"
SRC_URI = "https://github.com/snwh/paper-icon-theme/archive/v1.4.0.tar.gz;downloadfilename=paper-icon-theme-${PV}.tar.gz \
file://index.theme \
"
SRC_URI[md5sum] = "076e1dfa1bc5928f4c6616ffd933926a"
SRC_URI[sha256sum] = "b90f3a84634572bcba76cdd0c2a0d305a5c521c2054d3d390edffda5f233928b"
@ -15,3 +17,9 @@ FILES_${PN} = "${datadir}/icons"
EXTRA_OECONF = ""
# Add an index.theme to /usr/share/icons/default that inherits Paper cursors
do_install_append() {
mkdir -p ${D}${datadir}/icons/default
install -m 644 ${WORKDIR}/index.theme ${D}${datadir}/icons/default/index.theme
}