dotconf
This commit is contained in:
Executable
+21
@@ -0,0 +1,21 @@
|
|||||||
|
#!/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
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
autotools.autoreconf("-i")
|
||||||
|
autotools.configure("--disable-static")
|
||||||
|
|
||||||
|
def build():
|
||||||
|
autotools.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
autotools.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("AUTHORS", "COPYING", "README")
|
||||||
|
|
||||||
Executable
+49
@@ -0,0 +1,49 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>dotconf</Name>
|
||||||
|
<Homepage>http://www.opentts.org/projects/dotconf</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2.1</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>A library to parse configuration files</Summary>
|
||||||
|
<Description>dotconf is a simple-to-use and powerful configuration file parser library written in C.</Description>
|
||||||
|
<Archive sha1sum="0d66468cc264e7e0bfcff437cc22a1d741ca81f5" type="targz">http://source.pisilinux.org/1.0/dotconf-1.3.tar.gz</Archive>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>dotconf</Name>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>dotconf-devel</Name>
|
||||||
|
<Summary>Development headers and documentation for dotconf</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">dotconf</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc/dotconf/examples</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc/dotconf/dotconf-api.txt</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2015-08-25</Date>
|
||||||
|
<Version>1.3</Version>
|
||||||
|
<Comment>First release.</Comment>
|
||||||
|
<Name>Vedat Demir</Name>
|
||||||
|
<Email>vedat@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
Executable
+13
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>dotconf</Name>
|
||||||
|
<Summary xml:lang="tr">Yapılandırma dosyası ayıklama kitaplığı</Summary>
|
||||||
|
<Description xml:lang="tr">dotconf C dilinde yazılmış, basit kullanımlı ve güçlü bir yapılandırma dosyası ayıklama kitaplığıdır.</Description>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>dotconf-devel</Name>
|
||||||
|
<Summary xml:lang="tr">dotconf kitaplığı için geliştirme başlıkları ve belgeleri</Summary>
|
||||||
|
</Package>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user