SPECS: libdatrie.spec (NEW) - new

qboosh qboosh at pld-linux.org
Sun Aug 26 22:31:18 CEST 2007


Author: qboosh                       Date: Sun Aug 26 20:31:18 2007 GMT
Module: SPECS                         Tag: HEAD
---- Log message:
- new

---- Files affected:
SPECS:
   libdatrie.spec (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SPECS/libdatrie.spec
diff -u /dev/null SPECS/libdatrie.spec:1.1
--- /dev/null	Sun Aug 26 22:31:18 2007
+++ SPECS/libdatrie.spec	Sun Aug 26 22:31:13 2007
@@ -0,0 +1,111 @@
+# $Revision$, $Date$
+Summary:	Double-Array Trie library
+Summary(pl.UTF-8):	Biblioteka dwutablicowego trie
+Name:		libdatrie
+Version:	0.1.2
+Release:	1
+License:	LGPL v2.1
+Group:		Libraries
+Source0:	http://linux.thai.net/pub/thailinux/software/libthai/%{name}-%{version}.tar.gz
+# Source0-md5:	3eaedd5452149e11547a0dc74ee3fcfd
+URL:		http://linux.thai.net/projects/datrie
+BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+datrie is an implementation of double-array structure for representing
+trie, as proposed by Junichi Aoe.
+
+Trie is a kind of digital search tree, an efficient indexing method
+with O(1) time complexity for searching. Comparably as efficient as
+hashing, trie also provides flexibility on incremental matching and
+key spelling manipulation. This makes it ideal for lexical analyzers,
+as well as spelling dictionaries.
+
+%description -l pl.UTF-8
+datrie to implementacja struktury dwutablicowej do reprezentowania
+trie, zaproponowanej przez Junichi Aoe.
+
+Trie to rodzaj binarnego drzewa wyszukiwań, czyli wydajnej metody
+indeksowania ze złożonością czasową wyszukiwania O(1). Porównując trie
+jest tak wydajne jak haszowanie, ale zapewnia też elastyczność
+przyrostowego dopasowywania i manipulacji pisownią klucza. To czyni je
+idealnym dla analizatorów leksykalnych, a także sprawdzania pisowni.
+
+%package devel
+Summary:	Header files for datrie library
+Summary(pl.UTF-8):	Pliki nagłówkowe biblioteki datrie
+Group:		Development/Libraries
+Requires:	%{name} = %{version}-%{release}
+
+%description devel
+Header files for datrie library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki datrie.
+
+%package static
+Summary:	Static datrie library
+Summary(pl.UTF-8):	Statyczna biblioteka datrie
+Group:		Development/Libraries
+Requires:	%{name}-devel = %{version}-%{release}
+
+%description static
+Static datrie library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka datrie.
+
+%prep
+%setup -q
+
+%build
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+	DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post	-p /sbin/ldconfig
+%postun	-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS ChangeLog NEWS README
+%attr(755,root,root) %{_bindir}/trietool
+%attr(755,root,root) %{_libdir}/libdatrie.so.*.*.*
+%{_mandir}/man1/trietool.1*
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libdatrie.so
+%{_libdir}/libdatrie.la
+%{_includedir}/datrie
+%{_pkgconfigdir}/datrie.pc
+# only public API
+%{_mandir}/man3/sb-trie.h.3*
+%{_mandir}/man3/trie.h.3*
+%{_mandir}/man3/triedefs.h.3*
+%{_mandir}/man3/SB*.3*
+%{_mandir}/man3/sb_trie_*.3*
+%{_mandir}/man3/TRIE_*.3*
+%{_mandir}/man3/Trie*.3*
+%{_mandir}/man3/trie_*.3*
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libdatrie.a
+
+%define date	%(echo `LC_ALL="C" date +"%a %b %d %Y"`)
+%changelog
+* %{date} PLD Team <feedback at pld-linux.org>
+All persons listed below can be reached at <cvs_login>@pld-linux.org
+
+$Log$
+Revision 1.1  2007/08/26 20:31:13  qboosh
+- new
================================================================


More information about the pld-cvs-commit mailing list