]> git.pld-linux.org Git - packages/perl-Tree-Trie.git/blame - perl-Tree-Trie.spec
- should be ready for perl-5.8.0; release++
[packages/perl-Tree-Trie.git] / perl-Tree-Trie.spec
CommitLineData
4eef7744 1%include /usr/lib/rpm/macros.perl
c1d5c9a3 2%define pdir Tree
3%define pnam Trie
e00e16ae 4Summary: Tree::Trie - An implementation of the Trie data structure in Perl
c2c4c98d 5Summary(pl): Tree::Trie - perlowa implementacja struktury danych Trie
fe4f5817 6Name: perl-Tree-Trie
6d81625c 7Version: 0.4
8a2d8bad 8Release: 4
8bbfd769 9License: GPL
fe4f5817 10Group: Development/Languages/Perl
41e8dd60 11Source0: http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
c4171ecb 12BuildRequires: perl >= 5.6
8a2d8bad 13BuildRequires: rpm-perlprov >= 4.1-13
e5d9bc5a 14BuildArch: noarch
550d67c8 15BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
fe4f5817 16
17%description
c2c4c98d
JB
18This module implements a trie data structure. The term "trie" comes
19from the word re*trie*val, but is generally pronounced like "try". A
20trie is a tree structure (or directed acyclic graph), the nodes of
21which represent letters in a word. For example, the final lookup for
22the word 'bob' would look something like
23$ref->{'b'}{'o'}{'b'}{HASH(0x80c6bbc)} (the HASH being an end
24marker). Only nodes which would represent words in the trie exist,
25making the structure slightly smaller than a hash of the same data
26set.
27
28%description -l pl
29