Merge pull request #11107 from 4fury-c3440d8/b1

toxic: curses tox client.
This commit is contained in:
Kamil ATLI
2022-12-04 22:28:15 +03:00
committed by GitHub
2 changed files with 94 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/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 autotools, get
j = ''.join([
' PREFIX=/usr',
' ENABLE_ASAN=0',
' DISABLE_AV=0',
' DISABLE_X11=0',
' DISABLE_GAMES=1 '
])
def build():
autotools.make(j)
def install():
autotools.rawInstall("DESTDIR=%s PREFIX=/usr" % get.installDIR())
+73
View File
@@ -0,0 +1,73 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>toxic</Name>
<Homepage>https://github.com/Jfreegman/toxic</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>GPL-3</License>
<IsA>network.chat</IsA>
<PartOf>app</PartOf>
<Summary>A Tox-based instant messaging and video chat client.</Summary>
<Description>Toxic is a Tox-based instant messaging and video chat client.</Description>
<Archive sha1sum="d52053986209a3e1dd329d5891d98f6e46b02b79" type="targz">
https://github.com/JFreegman/toxic/releases/download/v0.11.3/toxic-0.11.3.tar.gz
</Archive>
<BuildDependencies>
<Dependency>curl-devel</Dependency>
<Dependency>libconfig-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libvpx-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>ncurses-devel</Dependency>
<Dependency>toxcore-c-devel</Dependency>
<Dependency>openal-devel</Dependency>
<Dependency>freealut-devel</Dependency>
<Dependency>asciidoc</Dependency>
<Dependency>qrencode-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level='1'></Patch> -->
</Patches>
</Source>
<Package>
<Name>toxic</Name>
<RuntimeDependencies>
<Dependency>curl</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libpng</Dependency>
<Dependency>libvpx</Dependency>
<Dependency>openal</Dependency>
<Dependency>ncurses</Dependency>
<Dependency>freealut</Dependency>
<Dependency>qrencode</Dependency>
<Dependency>libconfig</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>toxcore-c</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/man/man1</Path>
<Path fileType="data">/usr/share/man/man5</Path>
<Path fileType="data">/usr/share/toxic</Path>
<Path fileType="data">/usr/share/toxic/sounds</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-12-03</Date>
<Version>0.11.3</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>