0ad ve gereksinimleri
This commit is contained in:
@@ -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*")
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user