new applications.

This commit is contained in:
4fury-c3440d8
2021-03-05 20:35:46 +03:00
parent 0564e7ef45
commit 9fccebb8a0
5 changed files with 196 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
from pisi.actionsapi import qt5
def setup():
shelltools.cd("Kvantum")
qt5.configure()
def build():
shelltools.cd("Kvantum")
qt5.make()
def install():
shelltools.cd("Kvantum")
qt5.install()
pisitools.dodoc("ChangeLog", "COPYING", "NEWS", "README*")
+59
View File
@@ -0,0 +1,59 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>kvantum</Name>
<Homepage>https://github.com/tsujan/Kvantum</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<IsA>app</IsA>
<PartOf>desktop.lookandfeel</PartOf>
<Summary>Kvantum is an SVG-based theme engine for Qt4/Qt5, KDE and LXQt.</Summary>
<Description>Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur.</Description>
<Archive sha1sum="7112dbf24b70eff82f028f61f9ad37b4a6983824" type="tarxz">https://github.com/tsujan/Kvantum/releases/download/V0.18.0/Kvantum-0.18.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>libX11-devel</Dependency>
<Dependency>qt5-linguist</Dependency>
<Dependency>qt5-svg-devel</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>icon-theme-hicolor</Dependency>
<Dependency>qt5-designer-devel</Dependency>
<Dependency>kwindowsystem-devel</Dependency>
<Dependency>qt5-x11extras-devel</Dependency>
<Dependency>qt5-assistant-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>kvantum</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>libX11</Dependency>
<Dependency>qt5-svg</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>kwindowsystem</Dependency>
<Dependency>qt5-x11extras</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share/Kvantum</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-03-05</Date>
<Version>0.18.0</Version>
<Comment>First Beta build.</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>Kvantum</Name>
<Summary xml:lang="tr">Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur.</Summary>
<Description xml:lang="tr">Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur.</Description>
</Source>
</PISI>
+30
View File
@@ -0,0 +1,30 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
# shelltools.export("CFLAGS", "-lpthread")
pisitools.cxxflags.add("-Wno-unused-result -Wno-deprecated-declarations")
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release", sourceDir = '..')
def build():
shelltools.cd("build")
cmaketools.make()
cmaketools.make("translations")
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("../AUTHORS", "../CHANGELOG.md", "../LICENSE", "../README.md")
+75
View File
@@ -0,0 +1,75 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xournalpp</Name>
<Homepage>https://github.com/xournalpp/xournalpp</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>office.misc</PartOf>
<Summary>Xournal++ is a handwriting notetaking software with PDF annotation support.</Summary>
<Description>
Xournal++ is a handwriting notetaking software with PDF annotation support. Written in C++ with GTK3, supporting Linux, macOS and Windows 10. Supports pen input from devices such as Wacom Tablets.
</Description>
<Archive sha1sum="cc05e95fd15af717ee7b30449c40b242955efdf8" type="targz">
https://github.com/xournalpp/xournalpp/archive/1.0.20.tar.gz
</Archive>
<BuildDependencies>
<Dependency>git</Dependency>
<Dependency>cmake</Dependency>
<Dependency>lua-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>util-linux</Dependency>
<Dependency>lsb-release</Dependency>
<Dependency>libzip-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>portaudio-devel</Dependency>
<Dependency>libsndfile-devel</Dependency>
<Dependency>poppler-glib-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>xournalpp</Name>
<RuntimeDependencies>
<Dependency>lua</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>zlib</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libXi</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libzip</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>portaudio</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libsndfile</Dependency>
<!-- <Dependency>texlive-bin</Dependency> -->
<!-- <Dependency>texlive-core</Dependency> -->
<Dependency>poppler-glib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-03-05</Date>
<Version>1.0.20</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
</History>
</PISI>