1Summary: Program to read and convert dBASE files
2Name: dbf
3Version: @PACKAGE_VERSION@
4Release: 1
5Copyright: see doc/COPYING
6Group: Applications/Utils
7Url: http://dbf.berlios.de/
8Packager: Uwe Steinmann <uwe@steinmann.cx>
9Source: http://downloads.berlios.de/dbf/dbf-%{PACKAGE_VERSION}.tar.gz
10BuildRoot: /var/tmp/rpm/dbf-root
11Prefix: /usr
12
13%description
14dbf is an easy-to-use command line tool to show and convert the content
15of dBASE III, IV, and 5.0 files. It reads dBASE databases and prints the
16content to the screen or converts it to comma-separated (*.csv) files
17which can be opened in Excel, StarOffice, and most other spread sheets.
18It can also be used to show some statistics about the content.
19
20%prep
21%setup
22
23%build
24./configure --prefix=%prefix --mandir=%prefix/share/man --infodir=%prefix/share/info
25make
26
27%install
28rm -rf ${RPM_BUILD_ROOT}
29install -d -m 755 ${RPM_BUILD_ROOT}
30make DESTDIR=${RPM_BUILD_ROOT} install
31
32%clean
33rm -rf ${RPM_BUILD_ROOT}
34
35%files
36%attr(-,root,root) %doc README AUTHORS ChangeLog COPYING INSTALL
37%attr(-,root,root) %{prefix}/bin/*
38%attr(-,root,root) %{prefix}/share/man/man1/*
39