lxqt-qtplugin

This commit is contained in:
2018-04-26 01:21:09 +03:00
parent 2a117dab7d
commit a431318d5a
3 changed files with 87 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/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_BUILD_TYPE=release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DUSE_QT5=ON", sourceDir="..")
def build():
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
shelltools.cd("..")
pisitools.dodoc("AUTHORS")
+53
View File
@@ -0,0 +1,53 @@
<PISI>
<Source>
<Name>lxqt-qtplugin</Name>
<Homepage>http://www.lxde.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPL2</License>
<IsA>app</IsA>
<Icon>lxqt</Icon>
<Summary>LXQt platform integration for Qt</Summary>
<Description>LXDE-Qt platform integration plugin for Qt</Description>
<Archive sha1sum="0daa90dfa36845b475b13ddeb5e9d7547aae2aaa" type="tarxz">https://github.com/lxde/lxqt-qtplugin/releases/download/0.12.0/lxqt-qtplugin-0.12.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>kwindowsystem-devel</Dependency>
<Dependency>libdbusmenu-qt-devel</Dependency>
<Dependency>libgcc</Dependency>
<Dependency versionFrom="0.12.0">liblxqt-devel</Dependency>
<Dependency>libqtxdg-devel</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-linguist</Dependency>
<Dependency versionFrom="0.4.0">lxqt-build-tools</Dependency>
<Dependency>libfm-qt-devel</Dependency>
<Dependency>menu-cache-devel</Dependency>
<Dependency>libexif-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>lxqt-qtplugin</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>libdbusmenu-qt</Dependency>
<Dependency>libqtxdg</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-04-23</Date>
<Version>0.12.0</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>lxqt-qtplugin</Name>
<Summary xml:lang="tr">Qt için LXQt platform entegrasyonu.</Summary>
<Description xml:lang="tr">Qt için LXDE-Qt platform entegrasyon eklentisi.</Description>
</Source>
</PISI>