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:
52
sources/poky/meta/recipes-sato/puzzles/puzzles_git.bb
Normal file
52
sources/poky/meta/recipes-sato/puzzles/puzzles_git.bb
Normal file
@@ -0,0 +1,52 @@
|
||||
SUMMARY = "Simon Tatham's Portable Puzzle Collection"
|
||||
DESCRIPTION = "Collection of small computer programs which implement one-player puzzle games."
|
||||
HOMEPAGE = "http://www.chiark.greenend.org.uk/~sgtatham/puzzles/"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENCE;md5=191542b32377bde254e9799e0a46f18b"
|
||||
|
||||
# gtk support includes a bunch of x11 headers
|
||||
REQUIRED_DISTRO_FEATURES = "x11"
|
||||
|
||||
SRC_URI = "git://git.tartarus.org/simon/puzzles.git;branch=main;protocol=https"
|
||||
|
||||
UPSTREAM_CHECK_COMMITS = "1"
|
||||
SRCREV = "80aac3104096aee4057b675c53ece8e60793aa90"
|
||||
PE = "2"
|
||||
PV = "0.0+git"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit cmake features_check pkgconfig
|
||||
|
||||
DEPENDS += "gtk+3"
|
||||
|
||||
do_install:append () {
|
||||
# net conflicts with Samba, so rename it
|
||||
mv ${D}${bindir}/net ${D}${bindir}/puzzles-net
|
||||
rm ${D}/${datadir}/applications/net.desktop
|
||||
|
||||
# Create desktop shortcuts
|
||||
install -d ${D}/${datadir}/applications/
|
||||
cd ${D}/${prefix}/bin
|
||||
for prog in *; do
|
||||
if [ -x $prog ]; then
|
||||
# Convert prog to Title Case
|
||||
title=$(echo $prog | sed 's/puzzles-//' | sed 's/\(^\| \)./\U&/g')
|
||||
echo "making ${D}/${datadir}/applications/$prog.desktop"
|
||||
cat <<STOP > ${D}/${datadir}/applications/$prog.desktop
|
||||
[Desktop Entry]
|
||||
Name=$title
|
||||
Exec=${bindir}/$prog
|
||||
Icon=applications-games
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Game;
|
||||
StartupNotify=true
|
||||
STOP
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
CVE_STATUS[CVE-2024-13769] = "cpe-incorrect: issue in ThemeREX's Wordpress theme Puzzles"
|
||||
CVE_STATUS[CVE-2024-13770] = "cpe-incorrect: issue in ThemeREX's Wordpress theme Puzzles"
|
||||
CVE_STATUS[CVE-2025-0837] = "cpe-incorrect: issue in ThemeREX's Wordpress theme Puzzles"
|
||||
Reference in New Issue
Block a user