0ad ve gereksinimleri

This commit is contained in:
suvari
2019-10-30 00:43:29 +03:00
parent 08fc5bcc3c
commit 55c92898fa
27 changed files with 2215 additions and 316 deletions
+25
View File
@@ -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/licenses/gpl.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
shelltools.export("PTHREAD_LIBS", "-lpthread")
def setup():
autotools.autoreconf("-vfi")
autotools.configure("--with-gnutls \
--disable-static")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("README", "AUTHORS", "LICENSE", "ChangeLog")
+58
View File
@@ -0,0 +1,58 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>gloox</Name>
<Homepage>https://camaya.net/gloox</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>Full-featured Jabber/XMPP client library</Summary>
<Description>gloox is a rock-solid, full-featured Jabber/XMPP client library, written in C++. It makes writing spec-compliant clients easy and allows for hassle-free integration of Jabber/XMPP functionality into existing applications.</Description>
<Archive sha1sum="8ed03ee600675efc092055bf52fea799e7f83a43" type="tarbz2">https://camaya.net/download/gloox-1.0.22.tar.bz2</Archive>
<BuildDependencies>
<Dependency>zlib-devel</Dependency>
<Dependency>gnutls-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>gloox</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libidn</Dependency>
<Dependency>gnutls</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>gloox-devel</Name>
<Summary>Development files for gloox</Summary>
<RuntimeDependencies>
<Dependency release="current">gloox</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-30</Date>
<Version>1.0.20</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>gloox</Name>
<Summary xml:lang="tr">Çok işlevli Jabber/XMMP kitaplığı</Summary>
<Description xml:lang="tr">gloox, Jabber/XMMP istemcileri için C++ ile yazılmış çok işlevli bir kitaplıktır. Mevcut istemcilere kolayca Jabber/XMMP desteği eklenmesini sağlayarak standartlara uygun istemciler yazılmasına olanak verir.</Description>
</Source>
<Package>
<Name>gloox-devel</Name>
<Summary xml:lang="tr">gloox için geliştirme dosyaları</Summary>
</Package>
</PISI>