Files
openwrt_yocto/meta-openembedded/meta-gnome/recipes-gnome/faenza-icon-theme/faenza-icon-theme_1.3.bb
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

26 lines
877 B
BlitzBasic

DESCRIPTION = "An icon theme for Gnome"
SECTION = "x11/wm"
LICENSE = "GPL-3.0-only"
HOMEPAGE = "http://code.google.com/p/faenza-icon-theme/"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
inherit allarch gtk-icon-cache
S = "${WORKDIR}"
SRC_URI = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${BPN}/${BPN}_${PV}.zip"
SRC_URI[sha256sum] = "d4486fda0413f8a81a87e0dd2329f50f2a8a7cb4147b48cf147f0160add8174a"
do_install() {
install -d ${D}${datadir}/icons
for theme in `find -name 'Faenza*.tar.gz'`; do
tar -xf ${theme} -C ${D}${datadir}/icons
done
tar -xf emesene-faenza-theme.tar.gz -C ${D}${datadir}
mv -f ${D}${datadir}/emesene/themes ${D}${datadir}/themes
rm -rf ${D}${datadir}/emesene
chown -R root:root ${D}${datadir}
}
FILES:${PN} += "${datadir}/icons ${datadir}/themes"