diff options
-rw-r--r-- | meta-oe/recipes-graphics/libdecor/libdecor_0.1.1.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/libdecor/libdecor_0.1.1.bb b/meta-oe/recipes-graphics/libdecor/libdecor_0.1.1.bb new file mode 100644 index 0000000000..4e396d83e9 --- /dev/null +++ b/meta-oe/recipes-graphics/libdecor/libdecor_0.1.1.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SUMMARY = "libdecor - A client-side decorations library for Wayland clients" | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=7ae2be7fb1637141840314b51970a9f7" | ||
4 | |||
5 | SRC_URI = "git://gitlab.gnome.org/jadahl/libdecor.git;protocol=https;branch=master" | ||
6 | |||
7 | DEPENDS = " \ | ||
8 | cairo \ | ||
9 | pango \ | ||
10 | wayland \ | ||
11 | wayland-native \ | ||
12 | wayland-protocols \ | ||
13 | " | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | SRCREV = "e87dcfdaf83f332fa83b43c804fcf93c151ff0f5" | ||
17 | |||
18 | PACKAGECONFIG ?= "dbus ${@bb.utils.filter('DISTRO_FEATURES', 'gtk3 opengl', d)}" | ||
19 | |||
20 | PACKAGECONFIG[dbus] = "-Ddbus=enabled,-Ddbus=disabled,dbus" | ||
21 | PACKAGECONFIG[demo] = "-Ddemo=true,-Ddemo=false,virtual/libegl libxkbcommon" | ||
22 | PACKAGECONFIG[gtk3] = "-Dgtk=enabled,-Dgtk=disabled,gtk+3" | ||
23 | PACKAGECONFIG[opengl] = ",,virtual/libgl" | ||
24 | |||
25 | inherit meson pkgconfig | ||
26 | |||
27 | EXTRA_OEMESON += "--buildtype release" | ||
28 | |||
29 | BBCLASSEXTEND = "native nativesdk" | ||