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>
+27
View File
@@ -0,0 +1,27 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.export("CFLAGS", "%s -fPIC" % get.CFLAGS())
for i in ["NEWS", "AUTHORS", "COPYING"]:
shelltools.touch(i)
autotools.autoreconf("-vfi")
autotools.configure("--disable-dependency-tracking \
--disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("LICENSE", "ChangeLog", "README*")
+51
View File
@@ -0,0 +1,51 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>enet</Name>
<Homepage>http://enet.bespin.org/</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<Icon>enet</Icon>
<IsA>library</IsA>
<Summary>UDP network library</Summary>
<Description>enet is a relatively thin, simple and robust network communication layer on top of UDP.</Description>
<Archive sha1sum="d1c64b64a6e8a46166a5690cfaab9ae6e438ef04" type="targz">http://enet.bespin.org/download/enet-1.3.14.tar.gz</Archive>
<BuildDependencies>
<Dependency>glibc-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>enet</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>enet-devel</Name>
<Summary>Development files for enet</Summary>
<RuntimeDependencies>
<Dependency release="current">enet</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.3.14</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>enet</Name>
<Summary xml:lang="tr">UDP ağ kitaplığı</Summary>
<Description xml:lang="tr">enet UDP protokolü üzerinden iletişim için kullanılabilecek küçük, kolay kullanımlı ve sağlam bir kitaplıktır.</Description>
</Source>
<Package>
<Name>enet-devel</Name>
<Summary xml:lang="tr">enet için geliştirme dosyaları</Summary>
</Package>
</PISI>
+22
View File
@@ -0,0 +1,22 @@
#!/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 pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
import os
#WorkDir = "miniupnpc-1.9"
def setup():
shelltools.system('cmake -L -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr .')
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+52
View File
@@ -0,0 +1,52 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>miniupnpc</Name>
<Homepage>http://miniupnp.free.fr/</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Packager>
<License>Copyright (c) 2005-2011, Thomas BERNARD.All rights reserved.</License>
<!--Icon></Icon-->
<IsA>library</IsA>
<Summary>miniupnpc is a UPnP Control Point. </Summary>
<Description>miniupnpc, the client library, enabling applications to access the services provided by an UPnP "Internet Gateway Device" present on the network. In UPnP terminology,miniupnpc is a UPnP Control Point. </Description>
<Archive sha1sum="f4110363c15ba28484cbc92f6b94a2aa4a09120d" type="targz">http://miniupnp.free.fr/files/download.php?file=miniupnpc-2.1.20190824.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>miniupnpc</Name>
<RuntimeDependencies>
<!--Dependency></Dependency-->
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
</Files>
</Package>
<Package>
<Name>miniupnpc-devel</Name>
<RuntimeDependencies>
<Dependency release="current">miniupnpc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/miniupnpc</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-10-30</Date>
<Version>2.1.20190824</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,18 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>miniupnpc</Name>
<Summary xml:lang="tr">bir uPnP istemci kütüphanesi</Summary>
<Description xml:lang="tr">bir uPnP istemci kitaplığı;uygulamaların ağdaki mevcut bir UPnP "internet ağgeçidi aygıtı"
tarafından sağlanan servislere erişimine olanak verir.
</Description>
</Source>
<Package>
<Name>miniupnpc</Name>
<Summary xml:lang="tr">bir uPnP istemci kütüphanesi</Summary>
</Package>
<Package>
<Name>miniupnpc-devel</Name>
<Summary xml:lang="tr">miniupnpc için geliştirme dosyaları</Summary>
</Package>
</PISI>