source: projects/specs/trunk/d/dbh/dbh-vl.spec @ 521

Revision 521, 2.3 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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