xfce docklike plugin.

This commit is contained in:
4fury-c3440d8
2021-04-16 18:50:40 +03:00
parent 22b880ff03
commit f88d8b1ab3
2 changed files with 93 additions and 0 deletions
@@ -0,0 +1,25 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
# shelltools.system("NOCONFIGURE=1 ./autogen.sh")
autotools.configure()
pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS")
@@ -0,0 +1,68 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xfce4-docklike-plugin</Name>
<Homepage>https://github.com/nsz32/docklike-plugin</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>GPLv3</License>
<IsA>library</IsA>
<PartOf>desktop.xfce.addon</PartOf>
<Summary>A Dock-like Taskbar Plugin for XFCE.</Summary>
<Description>
A modern, docklike, minimalist taskbar for XFCE.
</Description>
<Archive sha1sum="06f0351eb428ad5d652718f25ab3504ddb8b2219" type="tarxz">
https://github.com/davekeogh/xfce4-docklike-plugin/releases/download/v0.2.0/xfce4-docklike-plugin-0.2.0.tar.xz
</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libwnck3-devel</Dependency>
<Dependency>xfce4-dev-tools</Dependency>
<Dependency>libxfce4ui-devel</Dependency>
<Dependency>xfce4-panel-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xfce4-docklike-plugin</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>harfbuzz</Dependency>
<Dependency>libwnck3</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libxfce4ui</Dependency>
<Dependency>xfce4-panel</Dependency>
<Dependency>libxfce4util</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-04-02</Date>
<Version>0.2.0</Version>
<Comment>First release from David Keogh.</Comment>
<Email>wascheme@tuta.io</Email>
<Name>fury</Name>
</Update>
</History>
</PISI>