From 1052f80cbad1a4b805fc6c3aec164a69b1b8acdc Mon Sep 17 00:00:00 2001 From: Rmys Date: Sat, 8 Nov 2025 09:49:00 +0300 Subject: [PATCH] xfce4-screenshooter ver. bump --- .../xfce/addon/xfce4-screenshooter/actions.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/desktop/xfce/addon/xfce4-screenshooter/actions.py b/desktop/xfce/addon/xfce4-screenshooter/actions.py index d9ccae89f5..11321fd388 100644 --- a/desktop/xfce/addon/xfce4-screenshooter/actions.py +++ b/desktop/xfce/addon/xfce4-screenshooter/actions.py @@ -7,24 +7,24 @@ from pisi.actionsapi import autotools from pisi.actionsapi import pisitools from pisi.actionsapi import shelltools +from pisi.actionsapi import mesontools from pisi.actionsapi import get def setup(): - shelltools.system("NOCONFIGURE=1 ./autogen.sh") - autotools.configure("--prefix=/usr \ - --enable-wayland \ - --disable-debug \ - --disable-dependency-tracking") + # shelltools.system("NOCONFIGURE=1 ./autogen.sh") + mesontools.configure("-Dwayland=enabled \ + -Dxfixes=enabled \ + -Dx11=enabled") - pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + # pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") def build(): - autotools.make() + mesontools.build() def install(): - autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + mesontools.install() pisitools.insinto("/usr/share/pixmaps/", "icons/scalable/org.xfce.screenshooter.svg")