Bruce Leidl
be34ea65f3
- removed layers meta-rust and meta-clang - added new dependencies to Makefile - changed override syntax across all recipe files - updated conf files from hardknott to kirkstone - SRC_URI git URLS fixed to always include branch and protocol - LICENSE fields updated with new naming convention - updated citadel-tools dependencies - upgraded mozjs to mozjs-91 No longer needed because poky includes newer version (or new enough): - glib-2.0 - libgudev - xorgproto - libxfixes - libinput - wayland-protocols - vte
23 lines
709 B
BlitzBasic
23 lines
709 B
BlitzBasic
HOMEPAGE = "https://snwh.org/paper"
|
|
LICENSE = "CC-BY-SA-4.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=8335471e369a410f354d5179fdcf0195 \
|
|
file://LICENSE;md5=4a312f184ff2ceafe9466cbb7ea43f4e"
|
|
|
|
SRC_URI = "git://github.com/snwh/paper-icon-theme.git;protocol=https;branch=master \
|
|
file://index.theme \
|
|
"
|
|
SRCREV = "7860fba850fc7f9aed83b1abd804169e816005cd"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit meson allarch
|
|
|
|
FILES:${PN} = "${datadir}/icons"
|
|
|
|
# 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
|
|
}
|
|
|