kde/Plasma: kactivitymanagerd 6.7.2 + boost 1.86 (headers) sellados — plasmashell exige el daemon de actividades
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
# boost 1.86.0 — HEADERS-ONLY. kactivitymanagerd usa Boost.Container (header-only) ⇒ sólo necesita
|
||||
# Boost_INCLUDE_DIR. No compilamos las libs de boost (b2): copiamos el árbol `boost/` a /usr/include.
|
||||
name = "boost"
|
||||
version = "1.86.0"
|
||||
|
||||
[source]
|
||||
tarball = "https://archives.boost.io/release/1.86.0/source/boost_1_86_0.tar.bz2"
|
||||
sha256 = "1bed88e40401b2cb7a1f76d4bab499e352fa4d0c5f31c0dbae64e24d34d7513b"
|
||||
|
||||
[build]
|
||||
compiler = "zig-cc"
|
||||
target = "x86_64-linux-musl"
|
||||
link = "dynamic"
|
||||
|
||||
[build.phases]
|
||||
configure = "true"
|
||||
compile = "true"
|
||||
install = "mkdir -p /out/usr/include && cp -r boost /out/usr/include/"
|
||||
|
||||
[deps]
|
||||
build = []
|
||||
@@ -0,0 +1,47 @@
|
||||
# kactivitymanagerd 6.7.2 — daemon D-Bus de actividades KDE. plasmashell ABORTA la carga del shell si no
|
||||
# corre ("The activity manager daemon (kactivitymanagerd) is not running"). Patrón KF6 (dynamic, wrapper
|
||||
# zig, ECM). Usa Qt6Sql (DB de actividades sqlite) + PlasmaActivities + KIO.
|
||||
name = "kactivitymanagerd"
|
||||
version = "6.7.2"
|
||||
|
||||
[source]
|
||||
tarball = "https://download.kde.org/stable/plasma/6.7.2/kactivitymanagerd-6.7.2.tar.xz"
|
||||
sha256 = "98d99436f07ee4fae8873d187ce4a9f41ca9fdc7d9adcc9423ec158996b42c73"
|
||||
|
||||
[build]
|
||||
compiler = "zig-cc"
|
||||
target = "x86_64-linux-musl"
|
||||
link = "dynamic"
|
||||
flags = []
|
||||
|
||||
[build.phases]
|
||||
configure = '''
|
||||
rm -rf po
|
||||
ZW="$PWD/.zwrap"; mkdir -p "$ZW"
|
||||
cat > "$ZW/cc" <<'W'
|
||||
#!/bin/sh
|
||||
a=""; for x in "$@"; do [ "$x" = "-Wl,--fatal-warnings" ] && continue; a="$a $x"; done
|
||||
exec /opt/zig/zig cc -mcpu=baseline $a
|
||||
W
|
||||
cat > "$ZW/cxx" <<'W'
|
||||
#!/bin/sh
|
||||
a=""; for x in "$@"; do [ "$x" = "-Wl,--fatal-warnings" ] && continue; a="$a $x"; done
|
||||
exec /opt/zig/zig c++ -mcpu=baseline $a
|
||||
W
|
||||
chmod +x "$ZW/cc" "$ZW/cxx"
|
||||
cmake -B build -G Ninja -Wno-dev \
|
||||
-DCMAKE_C_COMPILER="$ZW/cc" -DCMAKE_CXX_COMPILER="$ZW/cxx" -DCMAKE_ASM_COMPILER="$ZW/cc" \
|
||||
-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_PREFIX_PATH=/usr \
|
||||
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF -DBUILD_TESTING=OFF
|
||||
'''
|
||||
compile = "cmake --build build"
|
||||
install = "DESTDIR=/out cmake --install build"
|
||||
|
||||
[deps]
|
||||
build = ["cmake", "samurai", "python3", "pkgconf", "qtbase", "dbus", "extra-cmake-modules", "qttools",
|
||||
"gettext-tiny", "mesa", "libdrm", "libxkbcommon", "wayland", "qtdeclarative", "boost",
|
||||
"plasma-activities", "kcoreaddons", "kconfig", "ki18n", "kcrash", "kdbusaddons", "kglobalaccel",
|
||||
"kio", "kservice", "kwindowsystem", "solid", "kconfigwidgets", "kcompletion", "kwidgetsaddons",
|
||||
"kitemviews", "kcodecs", "kcolorscheme", "kguiaddons", "kjobwidgets", "kbookmarks", "karchive",
|
||||
"kxmlgui", "ktextwidgets", "sonnet", "kparts", "kiconthemes", "kauth", "kglobalaccel",
|
||||
"libX11", "xorgproto", "libXau", "libXdmcp", "libXext", "libXrender", "libXfixes", "libXi", "libxcb"]
|
||||
Reference in New Issue
Block a user