]> git.ipfire.org Git - people/pmueller/ipfire-3.x.git/blame - libdatrie/libdatrie.nm
wpasupplicant: update to 3.10
[people/pmueller/ipfire-3.x.git] / libdatrie / libdatrie.nm
CommitLineData
41b52a95
MT
1###############################################################################
2# IPFire.org - An Open Source Firewall Solution #
3# Copyright (C) - IPFire Development Team <info@ipfire.org> #
4###############################################################################
5
6name = libdatrie
7version = 0.2.13
fb0b5f5a 8release = 1.1
41b52a95
MT
9
10groups = System/Libraries
11url = https://linux.thai.net/projects/datrie
12license = LGPLv2+
13summary = Implementation of Double-Array structure for representing trie
14
15description
16 datrie is an implementation of double-array structure for representing trie.
17 Trie is a kind of digital search tree, an efficient indexing method with O(1)
18 time complexity for searching. Comparably as efficient as hashing, trie also
19 provides flexibility on incremental matching and key spelling manipulation.
20 This makes it ideal for lexical analyzers, as well as spelling dictionaries.
21end
22
23source_dl = https://linux.thai.net/pub/thailinux/software/libthai/
24sources = %{thisapp}.tar.xz
25
26build
27 test
28 LD_LIBRARY_PATH=%{DIR_APP}/datrie/.libs make check
29 end
30end
31
32packages
33 package %{name}
34
35 package %{name}-devel
36 template DEVEL
37 end
38
39 package %{name}-debuginfo
40 template DEBUGINFO
41 end
42end