libdatrie/libdatrie.spec

85 lines
2.6 KiB
RPMSpec
Raw Normal View History

2014-07-03 12:07:09 +00:00
Name: libdatrie
2015-08-25 09:40:20 +00:00
Version: 0.2.9
Release: 1%{?dist}
2014-07-03 12:07:09 +00:00
Summary: Implementation of Double-Array structure for representing trie
License: LGPLv2+
URL: http://linux.thai.net/projects/datrie
Source0: http://linux.thai.net/pub/thailinux/software/libthai/%{name}-%{version}.tar.xz
BuildRequires: doxygen
%description
datrie is an implementation of double-array structure for representing trie.
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.
Details of the implementation: http://linux.thai.net/~thep/datrie/datrie.html
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
This package contains libraries and header files for
developing applications that use %{name}.
%prep
%setup -q
%build
#sed -i '/sys_lib_dlsearch_path_spec/s|/usr/lib |/usr/lib /usr/lib64|' configure
%configure --disable-static \
--with-html-docdir=%{_pkgdocdir}-devel
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
2014-07-04 03:03:03 +00:00
%make_build
2014-07-03 12:07:09 +00:00
%install
%make_install
rm -frv %{buildroot}%{_pkgdocdir}
find %{buildroot} -name '*.*a' -delete -print
%check
2015-08-25 09:40:20 +00:00
LD_LIBRARY_PATH=../datrie/.libs %make_build check
2014-07-03 12:07:09 +00:00
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
2015-08-25 09:40:20 +00:00
%license COPYING
2014-07-03 12:07:09 +00:00
%{_libdir}/libdatrie.so.*
%files devel
%doc AUTHORS ChangeLog NEWS README*
%{_includedir}/datrie/
%{_libdir}/libdatrie.so
%{_libdir}/pkgconfig/datrie-0.2.pc
2015-08-25 09:40:20 +00:00
%{_bindir}/trietool
%{_mandir}/man1/trietool.1*
2014-07-03 12:07:09 +00:00
%changelog
2015-08-25 09:40:20 +00:00
* Thu Jun 18 2015 Christopher Meng <rpm@cicku.me> - 0.2.9-1
- Update to 0.2.9
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.8-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.8-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
2014-07-03 12:07:09 +00:00
* Wed Jun 18 2014 Christopher Meng <rpm@cicku.me> - 0.2.8-4
- Move docs to %%_pkgdocdir
* Mon Feb 24 2014 Christopher Meng <rpm@cicku.me> - 0.2.8-3
- Disable rpath.
* Sat Feb 08 2014 Christopher Meng <rpm@cicku.me> - 0.2.8-2
- Reform the subpackages.
- Add check section to ensure the availability.
* Tue Jan 07 2014 Christopher Meng <rpm@cicku.me> - 0.2.8-1
- Initial Package.