1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- Summary: Quick Database Manager
- Name: qdbm
- Version: 1.8.77
- Release: 1%{?_dist_release}
- License: LGPL 2.1
- URL: http://qdbm.sourceforge.net/
- Group: Development/Libraries
- Source0: http://qdbm.sourceforge.net/%{name}-%{version}.tar.gz
- Buildroot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: zlib-devel
- %description
- QDBM is a library of routines for managing a database. The database is a
- simple data file containing records, each is a pair of a key and a value.
- Every key and value is serial bytes with variable length. Both binary
- data and character string can be used as a key and a value. There is
- neither concept of data tables nor data types. Records are organized in
- hash table or B+ tree.
- %description -l ja
- QDBMはデータベースを扱うルーチン群のライブラリです。データベースといっても
- 単純なもので、キーと値のペアからなるレコード群を格納したデータファイルです。
- キーと値は任意の長さを持つ一連のバイト列であり、文字列でもバイナリでも扱う
- ことができます。テーブルやデータ型の概念はありません。レコードはハッシュ表
- またはB+木で編成されます。
- %package devel
- Summary: Header files and libraries for developing apps which will using QDBM.
- Group: Development/Libraries
- Requires: %{name} = %{version}-%{release}
- %description devel
- Header files and libraries for developing apps which will using QDBM.
- %prep
- %setup -q
- %build
- %configure --enable-stable --enable-pthread --enable-zlib --enable-iconv
- make
- %install
- rm -rf %{buildroot}
- %makeinstall DESTDIR=%{buildroot}
- rm -f %{buildroot}/usr/share/qdbm/{COPYING,ChangeLog,NEWS,THANKS,spex-ja.html,spex.html}
- %clean
- rm -rf %{buildroot}
- %check
- make check
- %files
- %defattr(-,root,root)
- %doc COPYING ChangeLog NEWS README THANKS spex-ja.html spex.html
- %{_bindir}/*
- %{_mandir}/man1/*
- %{_libdir}/*.so.*
- %files devel
- %defattr(-,root,root)
- %{_mandir}/man3/*
- %{_libdir}/*.so
- %{_libdir}/*.a
- %{_libdir}/pkgconfig/qdbm.pc
- %{_includedir}/*.h
- %changelog
- * Fri Oct 10 2008 Shu KONNO <owa@bg.wakwak.com> 1.8.77-1vl5
- - applied new versioning policy, spec in utf-8
- * Sat Jan 19 2008 IWAI, Masaharu <iwai@alib.jp> 1.8.77-0vl1
- - initial release
|