summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-gnome/gtk+/gtk-update-icon-cache-native_3.4.4.bb45
1 files changed, 45 insertions, 0 deletions
diff --git a/meta/recipes-gnome/gtk+/gtk-update-icon-cache-native_3.4.4.bb b/meta/recipes-gnome/gtk+/gtk-update-icon-cache-native_3.4.4.bb
new file mode 100644
index 0000000000..ea99c14901
--- /dev/null
+++ b/meta/recipes-gnome/gtk+/gtk-update-icon-cache-native_3.4.4.bb
@@ -0,0 +1,45 @@
1SUMMARY = "gtk-update-icon-cache built natively"
2DESCRIPTION = "Just gtk-update-icon-cache built from GTK+ natively, for on-host postinst script execution."
3SECTION = "libs"
4
5PROVIDES = "virtual/gtk-update-icon-cache-native"
6
7DEPENDS = "gdk-pixbuf-native"
8
9LICENSE = "LGPLv2 & LGPLv2+ & LGPLv2.1+"
10
11LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
12 file://gtk/gtk.h;endline=25;md5=1d8dc0fccdbfa26287a271dce88af737 \
13 file://gdk/gdk.h;endline=25;md5=c920ce39dc88c6f06d3e7c50e08086f2 \
14 file://tests/testgtk.c;endline=25;md5=cb732daee1d82af7a2bf953cf3cf26f1"
15
16SRC_URI = "http://download.gnome.org/sources/gtk+/3.4/gtk+-${PV}.tar.xz"
17SRC_URI[md5sum] = "1b2cf29502a6394e8d4b30f7f5bb9131"
18SRC_URI[sha256sum] = "f154e460075034da4c0ce89c320025dcd459da2a1fdf32d92a09522eaca242c7"
19
20S = "${WORKDIR}/gtk+-${PV}"
21
22inherit pkgconfig native
23
24PKG_CONFIG_FOR_BUILD = "${STAGING_BINDIR_NATIVE}/pkg-config-native"
25
26do_configure() {
27 # Quite ugly but defines enough to compile the tool.
28 if ! test -f gtk/config.h; then
29 echo "#define GETTEXT_PACKAGE \"gtk30\"" >> gtk/config.h
30 echo "#define HAVE_UNISTD_H 1" >> gtk/config.h
31 echo "#define HAVE_FTW_H 1" >> gtk/config.h
32
33 fi
34}
35
36do_compile() {
37 ${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS} ${S}/gtk/updateiconcache.c \
38 $(${PKG_CONFIG_FOR_BUILD} --cflags --libs gdk-pixbuf-2.0) \
39 -o gtk-update-icon-cache
40}
41
42do_install() {
43 install -d ${D}${bindir}
44 install -m 0755 ${B}/gtk-update-icon-cache ${D}${bindir}
45}