From 7c7b92bbcf631f6154c684baee563c9a6405206a Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 16 Apr 2022 02:51:26 +0300 Subject: [PATCH] Tox messaging protocol: libdatrie --- programming/library/libdatrie/actions.py | 18 +++++++ programming/library/libdatrie/pspec.xml | 66 ++++++++++++++++++++++++ 2 files changed, 84 insertions(+) create mode 100644 programming/library/libdatrie/actions.py create mode 100644 programming/library/libdatrie/pspec.xml diff --git a/programming/library/libdatrie/actions.py b/programming/library/libdatrie/actions.py new file mode 100644 index 0000000000..19b9a38f5b --- /dev/null +++ b/programming/library/libdatrie/actions.py @@ -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") diff --git a/programming/library/libdatrie/pspec.xml b/programming/library/libdatrie/pspec.xml new file mode 100644 index 0000000000..c151e36d8c --- /dev/null +++ b/programming/library/libdatrie/pspec.xml @@ -0,0 +1,66 @@ + + + + + libdatrie + https://linux.thai.net/~thep/datrie/datrie.html + + fury + uglyside@yandex.ru + + LGPL-2.1 + library + programming.library + An Implementation of Double-Array Trie. + This is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe. + + https://linux.thai.net/pub/thailinux/software/libthai/libdatrie-0.2.13.tar.xz + + + glibc + + + + + trietool + + libdatrie + + + /usr/bin + /usr/share/man/man1 + /usr/share/doc + + + + + libdatrie + + + + + /usr/lib + + + + + libdatrie-devel + + libdatrie + + + /usr/lib/pkgconfig + /usr/include + + + + + + 2022-04-14 + 0.2.13 + First build. + fury + uglyside@yandex.ru + + +