qps
This commit is contained in:
@@ -0,0 +1,25 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import cmaketools
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import shelltools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
shelltools.makedirs("build")
|
||||||
|
shelltools.cd("build")
|
||||||
|
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release \
|
||||||
|
-DCMAKE_INSTALL_LIBDIR=lib", sourceDir="..")
|
||||||
|
def build():
|
||||||
|
shelltools.cd("build")
|
||||||
|
cmaketools.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
shelltools.cd("build")
|
||||||
|
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||||
|
shelltools.cd("..")
|
||||||
|
#pisitools.dodoc("AUTHORS", "COPYING")
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>qps</Name>
|
||||||
|
<Homepage>https://github.com/QtDesktop/qps</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Ayhan Yalçınsoy</Name>
|
||||||
|
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>GPL2</License>
|
||||||
|
<Icon>qps</Icon>
|
||||||
|
<IsA>app</IsA>
|
||||||
|
<Summary>Qt Process Manager</Summary>
|
||||||
|
<Description>Qt Process Manager</Description>
|
||||||
|
<Archive sha1sum="d4f258df1e51cad0de511865189b1606cb30dcaa" type="tarxz">https://github.com/QtDesktop/qps/releases/download/1.10.17/qps-1.10.17.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>cmake</Dependency>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency>qt5-x11extras-devel</Dependency>
|
||||||
|
<Dependency>libXrender-devel</Dependency>
|
||||||
|
<Dependency>qt5-linguist</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
<Package>
|
||||||
|
<Name>qps</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/usr/bin/qps</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2018-04-23</Date>
|
||||||
|
<Version>1.10.17</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Ayhan Yalçınsoy</Name>
|
||||||
|
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>qps</Name>
|
||||||
|
<Summary xml:lang="tr">Qt tabanlı bir Süreç Yöneticisi</Summary>
|
||||||
|
<Description xml:lang="tr">Qt tabanlı bir Süreç Yöneticisi</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user