From e37313cebf5b88edb579534c265c66f151953546 Mon Sep 17 00:00:00 2001 From: uglyside Date: Sun, 6 Jul 2025 10:00:21 +0300 Subject: [PATCH 1/2] add lxhotkey v0.1.2 --- desktop/lxde/lxhotkey/actions.py | 20 ++++++++++ desktop/lxde/lxhotkey/pspec.xml | 66 ++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+) create mode 100644 desktop/lxde/lxhotkey/actions.py create mode 100644 desktop/lxde/lxhotkey/pspec.xml diff --git a/desktop/lxde/lxhotkey/actions.py b/desktop/lxde/lxhotkey/actions.py new file mode 100644 index 0000000000..3d31005999 --- /dev/null +++ b/desktop/lxde/lxhotkey/actions.py @@ -0,0 +1,20 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + autotools.configure("--enable-shared --with-gtk=3") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("COPYING") diff --git a/desktop/lxde/lxhotkey/pspec.xml b/desktop/lxde/lxhotkey/pspec.xml new file mode 100644 index 0000000000..2402909afb --- /dev/null +++ b/desktop/lxde/lxhotkey/pspec.xml @@ -0,0 +1,66 @@ + + + + + lxhotkey + https://github.com/lxde/lxhotkey + + Kamil Atlı + suvari@pisilinux.org + + GPLv2 + lxhotkey + app:gui + desktop.lxde + LXDE keyboard.shortcuts.configurator. + A.lightweight.global.keyboard.shortcuts.configurator. + https://github.com/lxde/releases/raw/master/releases/lxhotkey-0.1.2.tar.xz + + intltool + gtk3-devel + libfm-devel + libunistring-devel + + + + + + + + lxhotkey + + gtk3 + libfm + libunistring + + + /usr/bin + /usr/lib + /usr/share + + + + + lxhotkey-devel + + gtk3-devel + libfm-devel + libunistring-devel + lxhotkey + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2025-07-06 + 0.1.2 + First release. + Kamil Atlı + suvari@pisilinux.org + + + From 4336fef19510d75e4477a66857b622c40e4d23ea Mon Sep 17 00:00:00 2001 From: uglyside Date: Sun, 6 Jul 2025 10:01:00 +0300 Subject: [PATCH 2/2] add lxappearance-obconf v0.2.4 --- desktop/lxde/lxappearance-obconf/actions.py | 20 ++++++++ desktop/lxde/lxappearance-obconf/pspec.xml | 53 +++++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 desktop/lxde/lxappearance-obconf/actions.py create mode 100644 desktop/lxde/lxappearance-obconf/pspec.xml diff --git a/desktop/lxde/lxappearance-obconf/actions.py b/desktop/lxde/lxappearance-obconf/actions.py new file mode 100644 index 0000000000..b36d7173df --- /dev/null +++ b/desktop/lxde/lxappearance-obconf/actions.py @@ -0,0 +1,20 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + autotools.configure("--enable-gtk3 --disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "COPYING") diff --git a/desktop/lxde/lxappearance-obconf/pspec.xml b/desktop/lxde/lxappearance-obconf/pspec.xml new file mode 100644 index 0000000000..4c11c061d3 --- /dev/null +++ b/desktop/lxde/lxappearance-obconf/pspec.xml @@ -0,0 +1,53 @@ + + + + + lxappearance-obconf + https://github.com/lxde/lxappearance-obconf + + Kamil Atlı + suvari@pisilinux.org + + GPLv2 + lxappearance-obconf + app:gui + desktop.lxde + Lxappearance obconf plugin. + A plugin for lxappearance to modify openbox themes. + https://github.com/lxde/releases/raw/master/releases/lxappearance-obconf-0.2.4.tar.xz + + intltool + gtk3-devel + openbox-devel + lxappearance-devel + gdk-pixbuf-xlib-devel + + + + + + + + lxappearance-obconf + + gtk3 + openbox + lxappearance + gdk-pixbuf-xlib + + + /usr/lib + /usr/share + + + + + + 2025-07-06 + 0.2.4 + First release. + Kamil Atlı + suvari@pisilinux.org + + +