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,37 @@
|
||||
SUMMARY = "Snowball compiler and stemming algorithms"
|
||||
HOMEPAGE = "https://snowballstem.org/"
|
||||
LICENSE = "BSD-3-Clause"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=19139aaf3c8c8fa1ca6edd59c072fb9f"
|
||||
|
||||
DEPENDS:append:class-target = " ${BPN}-native"
|
||||
|
||||
SRC_URI = "git://github.com/snowballstem/snowball.git;branch=master;protocol=https \
|
||||
file://0001-Build-so-lib.patch \
|
||||
"
|
||||
SRCREV = "48a67a2831005f49c48ec29a5837640e23e54e6b"
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
LIBVER = "0.0.0"
|
||||
|
||||
inherit lib_package
|
||||
|
||||
do_compile:prepend:class-target() {
|
||||
# use native tools
|
||||
sed -i 's:./snowball :snowball :g' ${S}/GNUmakefile
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${bindir}
|
||||
install -m 755 ${S}/snowball ${D}${bindir}
|
||||
install -m 755 ${S}/stemwords ${D}${bindir}
|
||||
|
||||
install -d ${D}${libdir}
|
||||
install -m 755 ${S}/libstemmer.so.${LIBVER} ${D}${libdir}/
|
||||
ln -s libstemmer.so.${LIBVER} ${D}${libdir}/libstemmer.so.0
|
||||
ln -s libstemmer.so.${LIBVER} ${D}${libdir}/libstemmer.so
|
||||
|
||||
install -d ${D}${includedir}
|
||||
install -m 644 ${S}/include/*.h ${D}${includedir}
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
Reference in New Issue
Block a user