Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
# SPDX-FileCopyrightText: 2017-2019 Volker Krause <vkrause@kde.org>
|
||||
# SPDX-FileCopyrightText: 2019 Hannah Kiekens <hannahkiekens@gmail.com>
|
||||
#
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
SUMMARY = "Lightning Memory-Mapped Database (LMDB)"
|
||||
HOMEPAGE = "https://symas.com/lightning-memory-mapped-database/"
|
||||
LICENSE = "OLDAP-2.8"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=153d07ef052c4a37a8fac23bc6031972"
|
||||
|
||||
SRC_URI = "git://github.com/LMDB/lmdb.git;nobranch=1;protocol=https \
|
||||
file://run-ptest \
|
||||
file://0001-Makefile-use-libprefix-instead-of-libdir.patch \
|
||||
file://0001-make-set-soname-on-liblmdb.patch;patchdir=../.. \
|
||||
"
|
||||
|
||||
SRCREV = "ce201088de95d26fc0da36ba805bf2ddc2ba74ff"
|
||||
|
||||
inherit ptest
|
||||
|
||||
S = "${WORKDIR}/git/libraries/liblmdb"
|
||||
|
||||
do_compile() {
|
||||
oe_runmake CC="${CC}" SOEXT=".so.${PV}" LDFLAGS="${LDFLAGS}" XCFLAGS="${CFLAGS}"
|
||||
}
|
||||
|
||||
do_install() {
|
||||
oe_runmake CC="${CC}" DESTDIR="${D}" prefix="${prefix}" libprefix="${libdir}" manprefix="${mandir}" SOEXT=".so.${PV}" LDFLAGS="${LDFLAGS}" XCFLAGS="${CFLAGS}" install
|
||||
cd ${D}${libdir}
|
||||
ln -s liblmdb.so.${PV} liblmdb.so
|
||||
rm liblmdb.a
|
||||
}
|
||||
|
||||
do_install_ptest() {
|
||||
install -d ${D}${PTEST_PATH}/tests
|
||||
for test in mtest mtest2 mtest3 mtest4 mtest5 mdb_stat; do
|
||||
install -m 755 ${S}/$test ${D}${PTEST_PATH}/tests
|
||||
done
|
||||
}
|
||||
Reference in New Issue
Block a user