From 4acd97f943cd33d5155b11227dddccfb46d10c34 Mon Sep 17 00:00:00 2001 From: Rmys Date: Sat, 2 Mar 2024 19:23:29 +0300 Subject: [PATCH] appstream-qt ver. bump --- programming/library/appstream/actions.py | 29 ++++++++++++------------ 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/programming/library/appstream/actions.py b/programming/library/appstream/actions.py index 03edb0c4b9..f1234554ca 100755 --- a/programming/library/appstream/actions.py +++ b/programming/library/appstream/actions.py @@ -12,34 +12,35 @@ from pisi.actionsapi import shelltools def setup(): - shelltools.cd("%s" % get.workDIR()) - shelltools.copytree("AppStream-%s" % get.srcVERSION(), "AppStream-qt6") + # shelltools.cd("%s" % get.workDIR()) + # shelltools.copytree("AppStream-%s" % get.srcVERSION(), "AppStream-qt6") - shelltools.cd("AppStream-%s" % get.srcVERSION()) - mesontools.configure("--libexecdir=lib \ - -Dstemming=false \ - -Dqt5=true \ - -Dapidocs=false \ - -Dvapi=true") - - shelltools.cd("../AppStream-qt6") + # shelltools.cd("AppStream-%s" % get.srcVERSION()) mesontools.configure("--libexecdir=lib \ -Dstemming=false \ -Dqt=true \ + -Dqt-versions=5,6 \ -Dapidocs=false \ -Dvapi=true") + + # shelltools.cd("../AppStream-qt6") + # mesontools.configure("--libexecdir=lib \ + # -Dstemming=false \ + # -Dqt=true \ + # -Dapidocs=false \ + # -Dvapi=true") def build(): mesontools.build() - shelltools.cd("../AppStream-qt6") - mesontools.build() + # shelltools.cd("../AppStream-qt6") + # mesontools.build() def install(): mesontools.install() - shelltools.cd("../AppStream-qt6") - mesontools.install() + # shelltools.cd("../AppStream-qt6") + # mesontools.install() pisitools.insinto("/usr/share/pixmaps/", "docs/images/src/png/appstream-logo.png")