From ee0f6f8cb252e5ef2903b81d2a040b30f2c10149 Mon Sep 17 00:00:00 2001 From: Stefano Cotta Ramusino Date: Fri, 5 Jan 2024 21:40:05 +0100 Subject: [PATCH] update to 0.9.0 [release 0.9.0-1mamba;Wed Jul 04 2012] --- README.md | 4 ++++ dbf.spec | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 dbf.spec diff --git a/README.md b/README.md index b5de8e6..cee66bc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # dbf +dbf is an easy-to-use command line tool to show and convert the content of dBASE III, IV, and 5.0 files. +It reads dBASE databases and prints the content to the screen or converts it to comma-separated (*.csv) files which can be opened in Excel, StarOffice, and most other spread sheets. +It can also be used to show some statistics about the content. + diff --git a/dbf.spec b/dbf.spec new file mode 100644 index 0000000..5253729 --- /dev/null +++ b/dbf.spec @@ -0,0 +1,50 @@ +Name: dbf +Version: 0.9.0 +Release: 1mamba +Summary: A command line tool to show and convert the content of dBASE III, IV, and 5.0 files +Group: Applications/Databases +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://dbf.berlios.de/index.html +Source: http://download.berlios.de/dbf/dbf-core-%{version}.src.zip +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libdbf-devel +## AUTOBUILDREQ-END +License: GPL +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +dbf is an easy-to-use command line tool to show and convert the content of dBASE III, IV, and 5.0 files. +It reads dBASE databases and prints the content to the screen or converts it to comma-separated (*.csv) files which can be opened in Excel, StarOffice, and most other spread sheets. +It can also be used to show some statistics about the content. + +%prep +%setup -q -n %{name}-core +chmod +x configure + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%{find_lang} %{name} + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files -f %{name}.lang +%defattr(-,root,root) +%{_bindir}/dbf +%doc BUGS CREDITS ChangeLog README + +%changelog +* Wed Jul 04 2012 Stefano Cotta Ramusino 0.9.0-1mamba +- update to 0.9.0 + +* Thu Nov 08 2007 Silvan Calarco 0.8.3.1-1mamba +- package created by autospec