libconfig

This commit is contained in:
Poyraz76
2015-08-20 17:51:13 +03:00
parent bc3614b322
commit a45be9a4eb
3 changed files with 91 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#!/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 get
def setup():
autotools.configure("--disable-static")
# Do not link to unused m library
pisitools.dosed("libtool", "^(postdeps=.*) -lm (.*)$", r"\1 \2")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS","ChangeLog","COPYING.LIB","README")
+55
View File
@@ -0,0 +1,55 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libconfig</Name>
<Homepage>http://www.hyperrealm.com/libconfig/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>C/C++ Configuration File Library</Summary>
<Description>Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code.</Description>
<Archive sha1sum="b7a3c307dfb388e57d9a35c7f13f6232116930ec" type="targz">http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz</Archive>
</Source>
<Package>
<Name>libconfig</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libconfig-devel</Name>
<Summary>Development files for libconfig</Summary>
<RuntimeDependencies>
<Dependency release="current">libconfig</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="info">/usr/share/info</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2013-03-04</Date>
<Version>1.4.9</Version>
<Comment>Version bump.</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2010-10-12</Date>
<Version>1.4.5</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libconfig</Name>
<Summary xml:lang="tr">C/C++ Yapılandırma Dosyası Kitaplığı</Summary>
<Description xml:lang="tr">Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz.</Description>
</Source>
<Package>
<Name>libconfig-devel</Name>
<Summary xml:lang="tr">libconfig için geliştirme dosyaları</Summary>
</Package>
</PISI>