- 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)
40 lines
1.0 KiB
BlitzBasic
40 lines
1.0 KiB
BlitzBasic
DESCRIPTION = "An advanced menu editor"
|
|
HOMEPAGE = "https://bluesabre.org/menulibre/"
|
|
SECTION = "x11/graphics"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
DEPENDS = " \
|
|
python3-distutils-extra-native \
|
|
intltool-native \
|
|
"
|
|
|
|
inherit setuptools3_legacy gtk-icon-cache features_check
|
|
REQUIRED_DISTRO_FEATURES = "x11 gobject-introspection-data"
|
|
|
|
SRC_URI = "git://github.com/bluesabre/menulibre.git;protocol=https;branch=master"
|
|
SRCREV = "94bef4060714fa65c7246c25b87410b52a149f94"
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_compile[noexec] = "1"
|
|
|
|
do_install:append() {
|
|
sed -i 's:${D}::g' ${D}${datadir}/applications/menulibre.desktop
|
|
sed -i 's:share/share:share:g' ${D}${PYTHON_SITEPACKAGES_DIR}/menulibre_lib/menulibreconfig.py
|
|
}
|
|
|
|
FILES:${PN} += " \
|
|
${datadir}/applications \
|
|
${datadir}/metainfo \
|
|
${datadir}/icons \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
gtk+3 \
|
|
gtksourceview3 \
|
|
python3-pygobject \
|
|
gnome-menus \
|
|
python3-unixadmin \
|
|
python3-psutil \
|
|
"
|