diff --git a/desktop/misc/gromit-mpx/actions.py b/desktop/misc/gromit-mpx/actions.py new file mode 100644 index 0000000000..cb56919b93 --- /dev/null +++ b/desktop/misc/gromit-mpx/actions.py @@ -0,0 +1,26 @@ +#!/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 shelltools +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + shelltools.makedirs("build") + shelltools.cd("build") + cmaketools.configure("-DCMAKE_INSTALL_SYSCONFDIR=/etc -L", sourceDir = '..') + +def build(): + shelltools.cd("build") + cmaketools.make() + +def install(): + shelltools.cd("build") + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("../AUTHORS", "../ChangeLog", "../NEWS.md", "../README.md") + diff --git a/desktop/misc/gromit-mpx/pspec.xml b/desktop/misc/gromit-mpx/pspec.xml new file mode 100644 index 0000000000..faf4376f48 --- /dev/null +++ b/desktop/misc/gromit-mpx/pspec.xml @@ -0,0 +1,61 @@ + + + + + gromit-mpx + https://github.com/bk138/gromit-mpx + + fury + wascheme@tuta.io + + GPLv2 + app + desktop.misc + Gromit-MPX is a multi-pointer GTK3 port of the original Gromit desktop annotation tool. + + It enables graphical annotations with several pointers at once and is A LOT faster than its predecessor since it uses the XCOMPOSITE extension where available. + + + https://github.com/bk138/gromit-mpx/archive/1.4.tar.gz + + + cmake + gtk3-devel + libXi-devel + libX11-devel + libdbusmenu-devel + libappindicator-devel + + + + + gromit-mpx + + gtk3 + cairo + glib2 + libXi + libX11 + gdk-pixbuf + libappindicator + + + /usr/bin + /etc/gromit-mpx + /usr/share + /usr/share/man + /usr/share/doc + + + + + + 2020-12-26 + 1.4 + First build. + fury + wascheme@tuta.io + + + + diff --git a/programming/library/libappindicator/actions.py b/programming/library/libappindicator/actions.py new file mode 100644 index 0000000000..62179a13b7 --- /dev/null +++ b/programming/library/libappindicator/actions.py @@ -0,0 +1,23 @@ +#!/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, pisitools, get + +def setup(): + pisitools.dosed("src/Makefile.am", "-Werror", "") + autotools.autoreconf("-fiv") + autotools.configure("--with-gtk=3 --disable-static") + + pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog") + diff --git a/programming/library/libappindicator/pspec.xml b/programming/library/libappindicator/pspec.xml new file mode 100644 index 0000000000..87ed7b08a7 --- /dev/null +++ b/programming/library/libappindicator/pspec.xml @@ -0,0 +1,89 @@ + + + + + libappindicator + https://lazka.github.io/pgi-docs/AppIndicator3-0.1/index.html + + fury + wascheme@tuta.io + + LGPL + library + programming.library + A library to allow applications to export a menu into the Unity Menu bar. + A library to allow applications to export a menu into the Unity Menu bar. + + https://launchpad.net/libappindicator/12.10/12.10.0/+download/libappindicator-12.10.0.tar.gz + + + gtk2-devel + gtk3-devel + python-gtk-devel + libdbusmenu-gtk3 + libdbusmenu-devel + libindicator-devel + python-pygobject-devel + python-pygobject3-devel + gobject-introspection-devel + + + + + + + + libappindicator + + atk + gtk3 + glib2 + cairo + pango + gdk-pixbuf + libindicator + libdbusmenu-glib + libdbusmenu-gtk3 + + + /usr/lib + /usr/share + /usr/share/doc + + + + + libappindicator-devel + + libappindicator + gtk3-devel + libdbusmenu-glib + libdbusmenu-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + libappindicator-docs + + libappindicator + + + /usr/share/gtk-doc + + + + + + 2020-12-26 + 12.10.0 + First build. + fury + wascheme@tuta.io + + + + diff --git a/programming/library/libindicator/actions.py b/programming/library/libindicator/actions.py new file mode 100644 index 0000000000..f36fbb7340 --- /dev/null +++ b/programming/library/libindicator/actions.py @@ -0,0 +1,27 @@ +#!/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, pisitools, get + +def setup(): + pisitools.dosed("libindicator/Makefile.am", "-Werror", "") + pisitools.dosed("tools/Makefile.am", "-Werror", "") + autotools.autoreconf("-fiv") + autotools.configure("--with-gtk=3 --disable-tests --disable-static --disable-deprecations") + # fix autotypo. + pisitools.dosed("libindicator/Makefile", "-lglib-2.0-lm", "-lglib-2.0 -lm") + pisitools.dosed("tools/Makefile", "-lglib-2.0-lm", "-lglib-2.0 -lm") + + pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS") + diff --git a/programming/library/libindicator/pspec.xml b/programming/library/libindicator/pspec.xml new file mode 100644 index 0000000000..f605488178 --- /dev/null +++ b/programming/library/libindicator/pspec.xml @@ -0,0 +1,62 @@ + + + + + libindicator + https://launchpad.net/libindicator + + fury + wascheme@tuta.io + + GPLv3 + library + programming.library + A set of symbols and convience functions that all indicators would like to use. + A set of symbols and convience functions that all indicators would like to use. Not of real use outside of the Ayatana indicators project. + + https://launchpad.net/libindicator/12.10/12.10.1/+download/libindicator-12.10.1.tar.gz + + + gtk3-devel + glib2-devel + + + + + libindicator + + gtk3 + glib2 + gdk-pixbuf + + + /usr/libexec + /usr/lib + /usr/share + /usr/share/doc + + + + + libindicator-devel + + libindicator + gtk3-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2020-12-26 + 12.10.1 + First build. + fury + wascheme@tuta.io + + + +