Tox messaging protocol: libdatrie

This commit is contained in:
4fury-c3440d8
2022-04-16 02:51:26 +03:00
parent cceb15a72f
commit 7c7b92bbcf
2 changed files with 84 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools, pisitools, get
def setup():
autotools.configure("--disable-static --disable-doxygen-doc")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS")
+66
View File
@@ -0,0 +1,66 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libdatrie</Name>
<Homepage>https://linux.thai.net/~thep/datrie/datrie.html</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>LGPL-2.1</License>
<IsA>library</IsA>
<PartOf>programming.library</PartOf>
<Summary>An Implementation of Double-Array Trie.</Summary>
<Description>This is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe.</Description>
<Archive sha1sum="ff3d30605fdc9a226e7acde8de3752125b3a8791" type="tarxz">
https://linux.thai.net/pub/thailinux/software/libthai/libdatrie-0.2.13.tar.xz
</Archive>
<BuildDependencies>
<Dependency>glibc</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>trietool</Name>
<RuntimeDependencies>
<Dependency release="current">libdatrie</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="manual">/usr/share/man/man1</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libdatrie</Name>
<RuntimeDependencies>
<!-- <Dependency>libgcc</Dependency> -->
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
</Files>
</Package>
<Package>
<Name>libdatrie-devel</Name>
<RuntimeDependencies>
<Dependency release="current">libdatrie</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-04-14</Date>
<Version>0.2.13</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>