This commit is contained in:
2018-04-26 00:35:32 +03:00
parent 6c34714e6a
commit b364b22729
4 changed files with 105 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/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 \
-DPULL_TRANSLATIONS=no", sourceDir="..")
def build():
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
Binary file not shown.
+71
View File
@@ -0,0 +1,71 @@
<PISI>
<Source>
<Name>liblxqt</Name>
<Homepage>http://www.lxqt.org</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPL2</License>
<IsA>library</IsA>
<Icon>lxqt</Icon>
<Summary>Common base library for LXQt components.</Summary>
<Description>Core utility library for all LXDE-Qt components</Description>
<Archive sha1sum="abc18a1b673612e2f4661e532f6a6a41298c5eb4" type="tarxz">https://github.com/lxde/liblxqt/releases/download/0.12.0/liblxqt-0.12.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>glibc-devel</Dependency>
<Dependency>kwindowsystem-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libgcc</Dependency>
<Dependency versionFrom="3.1.0">libqtxdg-devel</Dependency>
<Dependency>pkgconfig</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-linguist</Dependency>
<Dependency>qt5-qdbusviewer</Dependency>
<Dependency>qt5-x11extras-devel</Dependency>
<Dependency>libXScrnSaver-devel</Dependency>
<Dependency versionFrom="0.4.0">lxqt-build-tools</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>liblxqt</Name>
<RuntimeDependencies>
<Dependency>kwindowsystem</Dependency>
<Dependency>libgcc</Dependency>
<Dependency versionFrom="3.1.0">libqtxdg</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-x11extras</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libXScrnSaver</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<Package>
<Name>liblxqt-devel</Name>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
<Summary>Development headers for liblxqt</Summary>
<RuntimeDependencies>
<Dependency release="current">liblxqt</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-x11extras-devel</Dependency>
<Dependency>libqtxdg-devel</Dependency>
</RuntimeDependencies>
</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>
+10
View File
@@ -0,0 +1,10 @@
<PISI>
<Source>
<Name>liblxqt</Name>
<Summary xml:lang="tr">Çoğu lxqt bileşenleri için ortak temel kitaplıklar.</Summary>
<Description xml:lang="tr">liblxqt çoğu lxde-qt bileşenleri için ortak temel kitaplıklar içerir.</Description>
</Source>
<Package>
<Name>liblxqt-devel</Name>
</Package>
</PISI>