From 6377ad4dc58ff740b31630c1741a50ba25108a64 Mon Sep 17 00:00:00 2001 From: Rmys Date: Sat, 21 Feb 2026 11:52:38 +0300 Subject: [PATCH] gedit --- desktop/gnome/apps/gedit/actions.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/desktop/gnome/apps/gedit/actions.py b/desktop/gnome/apps/gedit/actions.py index 94f8bc3f3f..8979e5d275 100644 --- a/desktop/gnome/apps/gedit/actions.py +++ b/desktop/gnome/apps/gedit/actions.py @@ -1,12 +1,18 @@ -#!/usr/bin/python +#!/usr/bin/python2 # -*- coding: utf-8 -*- # # Licensed under the GNU General Public License, version 2 # See the file http://www.gnu.org/copyleft/gpl.txt -from pisi.actionsapi import mesontools, pisitools +from pisi.actionsapi import mesontools, pisitools, shelltools, get +import os + def setup(): + shelltools.cd("subprojects") + shelltools.system("git clone https://gitlab.gnome.org/GNOME/libgd.git") + shelltools.cd("..") + mesontools.configure() def build():