diff options
Diffstat (limited to 'meta-oe/recipes-devtools/lua/lua_5.3.6.bb')
| -rw-r--r-- | meta-oe/recipes-devtools/lua/lua_5.3.6.bb | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/lua/lua_5.3.6.bb b/meta-oe/recipes-devtools/lua/lua_5.3.6.bb new file mode 100644 index 0000000000..5e8f54588b --- /dev/null +++ b/meta-oe/recipes-devtools/lua/lua_5.3.6.bb | |||
| @@ -0,0 +1,70 @@ | |||
| 1 | DESCRIPTION = "Lua is a powerful light-weight programming language designed \ | ||
| 2 | for extending applications." | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://doc/readme.html;beginline=318;endline=352;md5=f43d8ee6bc4df18ef8b276439cc4a153" | ||
| 5 | HOMEPAGE = "http://www.lua.org/" | ||
| 6 | |||
| 7 | SRC_URI = "http://www.lua.org/ftp/lua-${PV}.tar.gz;name=tarballsrc \ | ||
| 8 | file://lua.pc.in \ | ||
| 9 | file://0001-Allow-building-lua-without-readline-on-Linux.patch \ | ||
| 10 | file://CVE-2020-15888.patch \ | ||
| 11 | file://CVE-2020-15945.patch \ | ||
| 12 | file://0001-Fixed-bug-barriers-cannot-be-active-during-sweep.patch \ | ||
| 13 | " | ||
| 14 | |||
| 15 | # if no test suite matches PV release of Lua exactly, download the suite for the closest Lua release. | ||
| 16 | PV_testsuites = "5.3.4" | ||
| 17 | |||
| 18 | SRC_URI += "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', \ | ||
| 19 | 'http://www.lua.org/tests/lua-${PV_testsuites}-tests.tar.gz;name=tarballtest \ | ||
| 20 | file://run-ptest \ | ||
| 21 | ', '', d)}" | ||
| 22 | |||
| 23 | SRC_URI[tarballsrc.md5sum] = "83f23dbd5230140a3770d5f54076948d" | ||
| 24 | SRC_URI[tarballsrc.sha256sum] = "fc5fd69bb8736323f026672b1b7235da613d7177e72558893a0bdcd320466d60" | ||
| 25 | SRC_URI[tarballtest.md5sum] = "b14fe3748c1cb2d74e3acd1943629ba3" | ||
| 26 | SRC_URI[tarballtest.sha256sum] = "b80771238271c72565e5a1183292ef31bd7166414cd0d43a8eb79845fa7f599f" | ||
| 27 | |||
| 28 | inherit pkgconfig binconfig ptest | ||
| 29 | |||
| 30 | PACKAGECONFIG ??= "readline" | ||
| 31 | PACKAGECONFIG[readline] = ",,readline" | ||
| 32 | |||
| 33 | UCLIBC_PATCHES += "file://uclibc-pthread.patch" | ||
| 34 | SRC_URI_append_libc-uclibc = " ${UCLIBC_PATCHES}" | ||
| 35 | |||
| 36 | TARGET_CC_ARCH += " -fPIC ${LDFLAGS}" | ||
| 37 | EXTRA_OEMAKE = "'CC=${CC} -fPIC' 'MYCFLAGS=${CFLAGS} -fPIC' MYLDFLAGS='${LDFLAGS}'" | ||
| 38 | |||
| 39 | do_configure_prepend() { | ||
| 40 | sed -i -e s:/usr/local:${prefix}:g src/luaconf.h | ||
| 41 | sed -i -e s:lib/lua/:${baselib}/lua/:g src/luaconf.h | ||
| 42 | } | ||
| 43 | |||
| 44 | do_compile () { | ||
| 45 | oe_runmake ${@bb.utils.contains('PACKAGECONFIG', 'readline', 'linux', 'linux-no-readline', d)} | ||
| 46 | } | ||
| 47 | |||
| 48 | do_install () { | ||
| 49 | oe_runmake \ | ||
| 50 | 'INSTALL_TOP=${D}${prefix}' \ | ||
| 51 | 'INSTALL_BIN=${D}${bindir}' \ | ||
| 52 | 'INSTALL_INC=${D}${includedir}/' \ | ||
| 53 | 'INSTALL_MAN=${D}${mandir}/man1' \ | ||
| 54 | 'INSTALL_SHARE=${D}${datadir}/lua' \ | ||
| 55 | 'INSTALL_LIB=${D}${libdir}' \ | ||
| 56 | 'INSTALL_CMOD=${D}${libdir}/lua/5.3' \ | ||
| 57 | install | ||
| 58 | install -d ${D}${libdir}/pkgconfig | ||
| 59 | |||
| 60 | sed -e s/@VERSION@/${PV}/ ${WORKDIR}/lua.pc.in > ${WORKDIR}/lua.pc | ||
| 61 | install -m 0644 ${WORKDIR}/lua.pc ${D}${libdir}/pkgconfig/ | ||
| 62 | rmdir ${D}${datadir}/lua/5.3 | ||
| 63 | rmdir ${D}${datadir}/lua | ||
| 64 | } | ||
| 65 | |||
| 66 | do_install_ptest () { | ||
| 67 | cp -R --no-dereference --preserve=mode,links -v ${WORKDIR}/lua-${PV_testsuites}-tests ${D}${PTEST_PATH}/test | ||
| 68 | } | ||
| 69 | |||
| 70 | BBCLASSEXTEND = "native nativesdk" | ||
