45 lines
2.0 KiB
BlitzBasic
45 lines
2.0 KiB
BlitzBasic
SUMMARY = "GTK+ icon theme"
|
|
HOMEPAGE = "http://ftp.gnome.org/pub/GNOME/sources/adwaita-icon-theme/"
|
|
BUGTRACKER = "https://bugzilla.gnome.org/"
|
|
SECTION = "x11/gnome"
|
|
|
|
LICENSE = "LGPL-3.0 | CC-BY-SA-3.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=c84cac88e46fc07647ea07e6c24eeb7c"
|
|
|
|
inherit allarch autotools pkgconfig gettext gtk-icon-cache upstream-version-is-even
|
|
|
|
|
|
MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}"
|
|
SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz \
|
|
file://0001-Don-t-use-AC_CANONICAL_HOST.patch \
|
|
file://0001-Run-installation-commands-as-shell-jobs.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "3218540331a26c3d7a904ffe3d00bed8"
|
|
SRC_URI[sha256sum] = "9cad85de19313f5885497aceab0acbb3f08c60fcd5fa5610aeafff37a1d12212"
|
|
|
|
do_install_append() {
|
|
# Build uses gtk-encode-symbolic-svg to create png versions:
|
|
# no need to store the svgs anymore.
|
|
rm -f ${D}${prefix}/share/icons/Adwaita/scalable/*/*-symbolic.svg \
|
|
${D}${prefix}/share/icons/Adwaita/scalable/*/*-symbolic-rtl.svg
|
|
}
|
|
|
|
PACKAGES = "${PN}-cursors ${PN}-symbolic-hires ${PN}-symbolic ${PN}-hires ${PN}"
|
|
|
|
RREPLACES_${PN} = "gnome-icon-theme"
|
|
RCONFLICTS_${PN} = "gnome-icon-theme"
|
|
RPROVIDES_${PN} = "gnome-icon-theme"
|
|
|
|
FILES_${PN}-cursors = "${prefix}/share/icons/Adwaita/cursors/"
|
|
FILES_${PN}-symbolic-hires = "${prefix}/share/icons/Adwaita/96x96/*/*.symbolic.png \
|
|
${prefix}/share/icons/Adwaita/64x64/*/*.symbolic.png \
|
|
${prefix}/share/icons/Adwaita/48x48/*/*.symbolic.png \
|
|
${prefix}/share/icons/Adwaita/32x32/*/*.symbolic.png"
|
|
FILES_${PN}-symbolic = "${prefix}/share/icons/Adwaita/16x16/*/*.symbolic.png \
|
|
${prefix}/share/icons/Adwaita/24x24/*/*.symbolic.png"
|
|
FILES_${PN}-hires = "${prefix}/share/icons/Adwaita/256x256/ \
|
|
${prefix}/share/icons/Adwaita/512x512/"
|
|
FILES_${PN} = "${prefix}/share/icons/Adwaita/ \
|
|
${prefix}/share/pkgconfig/adwaita-icon-theme.pc"
|