dbh-vl.spec 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. Summary: Disk based hash library
  2. Name: dbh
  3. Version: 1.0.24
  4. Release: 1%{?_dist_release}
  5. License: GPL
  6. Group: System Environment/Libraries
  7. Source: http://prdownload.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
  8. URL: http://dbh.sourceforge.net/
  9. Buildroot: %{_tmppath}/%{name}-%{version}-root
  10. %description
  11. Disk based hashes is a method to create multidimensional binary trees on disk.
  12. This library permits the extension of database concept to a plethora of
  13. electronic data, such as graphic information. With the multidimensional binary
  14. tree it is possible to mathematically prove that access time to any
  15. particular record is minimized (using the concept of critical points from
  16. calculus), which provides the means to construct optimized databases for
  17. particular applications.
  18. %package devel
  19. Summary: developpment tools for dbh library
  20. Group: Development/Libraries
  21. Requires: dbh = %{version}-%{release}
  22. %description devel
  23. Static libraries and header files for the dbh library.
  24. %prep
  25. %setup -q
  26. %build
  27. %configure
  28. make
  29. %install
  30. rm -rf $RPM_BUILD_ROOT
  31. make install DESTDIR=$RPM_BUILD_ROOT
  32. ## remove unuse files
  33. rm -rf $RPM_BUILD_ROOT%{_libdir}/*.la
  34. %clean
  35. rm -rf $RPM_BUILD_ROOT
  36. %post -p /sbin/ldconfig
  37. %postun -p /sbin/ldconfig
  38. %files
  39. %defattr(-,root,root)
  40. %doc AUTHORS COPYING ChangeLog NEWS README TODO
  41. %{_libdir}/lib*.so.*
  42. %files devel
  43. %defattr(-,root,root)
  44. %doc examples/*.c examples/Makefile* doc/*.html
  45. %{_libdir}/lib*.so
  46. %{_libdir}/*a
  47. %{_libdir}/pkgconfig/*
  48. %{_includedir}/*
  49. %changelog
  50. * Sat Sep 20 2008 Shu KONNO <owa@bg.wakwak.com> 1.0.24-1vl5
  51. - applied new versioning policy
  52. - removed *.la
  53. * Wed Aug 16 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.24-0vl3
  54. - changed Group to System Environment/Libraries
  55. * Thu Mar 31 2005 UECHI Yasumasa <uechi@potaway.net> 1.0.24-0vl2
  56. - new upstream release
  57. * Wed Feb 02 2005 UECHI Yasumasa <uechi@potaway.net> 1.0.22-0vl1
  58. - new upstream release
  59. * Sun Jan 23 2005 UECHI Yasumasa <uechi@potaway.net> 1.0.20-0vl2
  60. - separate devel package
  61. * Wed Jan 19 2005 UECHI Yasumasa <uechi@potaway.net> 1.0.20-0vl1
  62. - new upstream release
  63. - change License QPL to GPL
  64. - use %configure macro
  65. * Mon Apr 19 2004 UECHI Yasumasa <uechi@potaway.net> 1.0.18-0vl1
  66. - new upstream release
  67. * Sat Sep 27 2003 UECHI Yasumasa <uh@u.dhis.portside.net> 1.0.17-0vl1
  68. - initial release