update to 0.7.1 [release 0.7.1-1mamba;Sun Jun 13 2021]
This commit is contained in:
parent
cc4507b505
commit
f71f6dc958
@ -1,15 +1,14 @@
|
||||
%define sourcever %(echo %version | cut -d. -f1-2)
|
||||
Name: mdbtools
|
||||
Version: 0.7
|
||||
Version: 0.7.1
|
||||
Release: 1mamba
|
||||
Summary: A set of utilities for reading Microsoft Access database (MDB) files
|
||||
Group: System/Tools
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: http://mdbtools.sourceforge.net/
|
||||
#Source: http://mesh.dl.sourceforge.net/sourceforge/mdbtools/mdbtools-%{version}.tar.gz
|
||||
Source: https://github.com/brianb/mdbtools/tarball/%{version}/mdbtools-%{version}.zip
|
||||
URL: https://github.com/mdbtools/mdbtools
|
||||
Source: https://github.com/mdbtools/mdbtools.git/%{version}/mdbtools-%{version}.tar.bz2
|
||||
Patch0: mdbtools-0.6pre1-gcc4.patch
|
||||
Patch1: mdbtools-0.6pre1-ooo.patch
|
||||
License: GPL
|
||||
@ -18,15 +17,17 @@ BuildRequires: glibc-devel
|
||||
BuildRequires: libgdk-pixbuf-devel
|
||||
BuildRequires: libglade-devel
|
||||
BuildRequires: libglib-devel
|
||||
%ifarch x86_64 %{ix86}
|
||||
BuildRequires: libgnome-devel
|
||||
BuildRequires: libgnomeui-devel
|
||||
%endif
|
||||
BuildRequires: libgtk2-devel
|
||||
BuildRequires: libltdl-devel
|
||||
BuildRequires: libodbc-devel
|
||||
BuildRequires: libpango-devel
|
||||
BuildRequires: libreadline-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
BuildRequires: txt2man
|
||||
|
||||
%description
|
||||
A set of utilities for reading Microsoft Access database (MDB) files.
|
||||
@ -45,29 +46,41 @@ Requires: libmdb = %{?epoch:%epoch:}%{version}-%{release}
|
||||
|
||||
%description -n libmdb-devel
|
||||
A set of libraries for reading Microsoft Access database (MDB) files.
|
||||
This package contains static libraries and header files needed for development.
|
||||
|
||||
This package contains static libraries and header files need for development.
|
||||
%package -n gmdb
|
||||
Summary: GNOME frontend from %{name}
|
||||
Group: Graphical Desktop/Applications/Utilities
|
||||
|
||||
%description -n gmdb
|
||||
GNOME frontend from %{name}.
|
||||
|
||||
%debug_package
|
||||
|
||||
%prep
|
||||
%setup -q -c
|
||||
mv brianb-mdbtools*/* .
|
||||
sed -i "s|libtooloze|libtoolize|" autogen.sh
|
||||
%setup -q
|
||||
#mv brianb-mdbtools*/* .
|
||||
#sed -i "s|libtooloze|libtoolize|" autogen.sh
|
||||
#./autogen.sh
|
||||
autoreconf -f -i
|
||||
|
||||
%build
|
||||
./autogen.sh
|
||||
%configure --with-unixodbc=%{_prefix}
|
||||
%make -j1
|
||||
%configure \
|
||||
--with-unixodbc=%{_prefix}
|
||||
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall
|
||||
|
||||
rm -rf %{buildroot}%{_localstatedir}/scrollkeeper
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/gmdb2
|
||||
%{_bindir}/mdb-array
|
||||
%{_bindir}/mdb-export
|
||||
%{_bindir}/mdb-header
|
||||
@ -78,35 +91,47 @@ sed -i "s|libtooloze|libtoolize|" autogen.sh
|
||||
%{_bindir}/mdb-sql
|
||||
%{_bindir}/mdb-tables
|
||||
%{_bindir}/mdb-ver
|
||||
%{_datadir}/gmdb/*
|
||||
%{_datadir}/gnome/help/gmdb/C/*
|
||||
%{_mandir}/man1/gmdb2.1*
|
||||
%{_mandir}/man1/mdb-*.1*
|
||||
%{_mandir}/man1/gmdb2.1*
|
||||
%doc COPYING
|
||||
|
||||
%ifarch %{ix86} x86_64
|
||||
%files -n gmdb
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/gmdb2
|
||||
%{_datadir}/gmdb/*
|
||||
%{_datadir}/omf/mdbtools/gmdb-C.omf
|
||||
%dir %{_datadir}/gnome/help/gmdb
|
||||
%dir %{_datadir}/gnome/help/gmdb/C
|
||||
%{_datadir}/gnome/help/gmdb/C/*
|
||||
%endif
|
||||
|
||||
%files -n libmdb
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libmdbsql.so.*
|
||||
%{_libdir}/libmdbodbc.so.*
|
||||
#%{_libdir}/libmdbodbc.so.*
|
||||
%{_libdir}/libmdb.so.*
|
||||
%doc AUTHORS COPYING.LIB
|
||||
|
||||
%files -n libmdb-devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/*.h
|
||||
%{_libdir}/libmdbsql.a
|
||||
%{_libdir}/libmdbsql.la
|
||||
%{_libdir}/libmdbsql.so
|
||||
%{_libdir}/libmdbodbc.a
|
||||
%{_libdir}/libmdbodbc.la
|
||||
%{_libdir}/libmdbodbc.so
|
||||
%{_libdir}/libmdbodbc*.a
|
||||
%{_libdir}/libmdbodbc*.la
|
||||
%{_libdir}/libmdbodbc*.so
|
||||
%{_libdir}/libmdb.a
|
||||
%{_libdir}/libmdb.la
|
||||
%{_libdir}/libmdb.so
|
||||
%{_includedir}/*.h
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
%doc ChangeLog NEWS README TODO
|
||||
|
||||
%changelog
|
||||
* Sun Jun 13 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.7.1-1mamba
|
||||
- update to 0.7.1
|
||||
|
||||
* Sun Mar 10 2013 Silvan Calarco <silvan.calarco@mambasoft.it> 0.7-1mamba
|
||||
- update to 0.7
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user