Merge pull request #4781 from ayhanyalcinsoy/master

lxqt-wallet
This commit is contained in:
2018-04-26 01:45:32 +03:00
committed by GitHub
3 changed files with 107 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#!/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_INSTALL_LIBDIR=/usr/lib\
-DCMAKE_BUILD_TYPE=Release \
-DNOSECRETSUPPORT=false \
-DQT5=true \
-DBUILD_SHARED=true \
-DNOKDESUPPORT=false", sourceDir="..")
def build():
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
shelltools.cd("..")
pisitools.dodoc("LICENSE")
+68
View File
@@ -0,0 +1,68 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>lxqt-wallet</Name>
<Homepage>https://github.com/mhogomchungu/lxqt_wallet</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<PartOf>desktop.toolkit</PartOf>
<License>LGPLv2.1-linking-exception</License>
<IsA>app:gui</IsA>
<Icon>lxqt</Icon>
<Summary>Qt-based wallet manager</Summary>
<Description>Qt-based wallet manager</Description>
<Archive sha1sum="d0d09cac0107c11929b41021d91569b54f417857" type="targz">https://github.com/mhogomchungu/lxqt_wallet/archive/3.1.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency versionFrom="5.9.3">qt5-base-devel</Dependency>
<Dependency versionFrom="5.9.3">qt5-linguist</Dependency>
<Dependency>libsecret-devel</Dependency>
<Dependency>libgcrypt-devel</Dependency>
<Dependency>kwallet-devel</Dependency>
<Dependency>knotifications-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>lxqt-wallet</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>libgcrypt</Dependency>
<Dependency>kwallet</Dependency>
<Dependency>libsecret</Dependency>
<Dependency versionFrom="5.9.3">qt5-base</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/liblxqt-wallet.*</Path>
<Path fileType="library">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="localdata">/usr/share/lxqt/translations</Path>
</Files>
</Package>
<Package>
<Name>lxqt-wallet-devel</Name>
<RuntimeDependencies>
<Dependency versionFrom="5.9.3">qt5-base-devel</Dependency>
<Dependency release="current">lxqt-wallet</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/lxqt</Path>
<Path fileType="library">/usr/lib/pkgconfig/lxqt-wallet.pc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-04-23</Date>
<Version>3.1.0</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>lxqt-wallet</Name>
<Summary xml:lang="tr">Qt tabanlı cüzdan yöneticisi</Summary>
<Description xml:lang="tr">Qt tabanlı cüzdan yöneticisi</Description>
</Source>
</PISI>