diff options
author | Markus Volk <f_l_k@t-online.de> | 2024-12-16 13:15:26 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-12-19 09:41:20 -0800 |
commit | dd241e2406db26f08ec3507ce73b273a893378e2 (patch) | |
tree | 71380d7e7ddec0e039f8882a2f54a99553267c48 | |
parent | c807ead7aa672a20d36f200928e06733d3c73b87 (diff) | |
download | meta-openembedded-dd241e2406db26f08ec3507ce73b273a893378e2.tar.gz |
lua-lgi: add recipe
gobject bindings for lua
Required to build the lua51 loader for libpeas-2
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/lgi/lua-lgi_0.9.2.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/lgi/lua-lgi_0.9.2.bb b/meta-oe/recipes-support/lgi/lua-lgi_0.9.2.bb new file mode 100644 index 0000000000..1584a931c7 --- /dev/null +++ b/meta-oe/recipes-support/lgi/lua-lgi_0.9.2.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | SUMMARY = "LGI is gobject-introspection based dynamic Lua binding to GObject based libraries." | ||
2 | HOMEPAGE = "https://https://github.com/pavouk/lgi" | ||
3 | LICENSE = "MIT" | ||
4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=a77b7838f84aa753d37f88fd9c9ccf7d" | ||
5 | |||
6 | SRC_URI = "git://github.com/pavouk/lgi.git;protocol=https;branch=master" | ||
7 | |||
8 | DEPENDS = " \ | ||
9 | luajit \ | ||
10 | luajit-native \ | ||
11 | cairo \ | ||
12 | gobject-introspection \ | ||
13 | gobject-introspection-native \ | ||
14 | " | ||
15 | |||
16 | S = "${WORKDIR}/git" | ||
17 | SRCREV = "d7666f77e7ee33907c84f5efdef32aef2e1cc196" | ||
18 | SRCPV = "${PV}+${SRCREV}" | ||
19 | |||
20 | inherit meson pkgconfig | ||
21 | |||
22 | EXTRA_OEMESON += "--buildtype release -Dtests=false" | ||
23 | |||
24 | FILES:${PN} = "${libdir} ${datadir}" | ||