qlipper
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 \
|
||||||
|
-DPULL_TRANSLATIONS=no \
|
||||||
|
-DCMAKE_BUILD_TYPE=Release ", sourceDir="..")
|
||||||
|
def build():
|
||||||
|
shelltools.cd("build")
|
||||||
|
cmaketools.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
shelltools.cd("build")
|
||||||
|
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||||
|
shelltools.cd("..")
|
||||||
|
pisitools.dodoc("COPYING")
|
||||||
Executable
BIN
Binary file not shown.
@@ -0,0 +1,48 @@
|
|||||||
|
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>qlipper</Name>
|
||||||
|
<Homepage>https://github.com/pvanek/qlipper</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Ayhan Yalçınsoy</Name>
|
||||||
|
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>GPL2+</License>
|
||||||
|
<Icon>qlipper</Icon>
|
||||||
|
<IsA>apps</IsA>
|
||||||
|
<Icon>qlipper</Icon>
|
||||||
|
<Summary>Lightweight and cross-platform clipboard history applet.</Summary>
|
||||||
|
<Description>Lightweight and cross-platform clipboard history applet.</Description>
|
||||||
|
<Archive sha1sum="26e611a74a6df9c53e97c194d41d98e7584eaa82" type="targz">https://github.com/pvanek/qlipper/archive/5.0.0.tar.gz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>cmake</Dependency>
|
||||||
|
<Dependency versionFrom="5.6.0">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.6.0">qt5-linguist</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<Patches>
|
||||||
|
<!--<Patch>cmakelist.patch</Patch>-->
|
||||||
|
</Patches>
|
||||||
|
</Source>
|
||||||
|
<Package>
|
||||||
|
<Name>qlipper</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>libX11</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/usr/bin</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>5.0.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>qlipper</Name>
|
||||||
|
<Summary xml:lang="tr">Hafif, çapraz platform bir pano uygulaması</Summary>
|
||||||
|
<Description xml:lang="tr">Hafif, çapraz platform bir pano uygulaması</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user