libzdb/libzdb.spec

83 lines
2.2 KiB
RPMSpec

Name: libzdb
Version: 3.1
Release: 1mamba
Summary: A database library with thread-safe connection pooling
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: System/Libraries
Source: http://www.tildeslash.com/libzdb/dist/libzdb-%{version}.tar.gz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libmysqlclient-devel
BuildRequires: libopenssl-devel
BuildRequires: libpostgresql-devel
BuildRequires: libsqlite-devel
BuildRequires: libz-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Libzdb is a database library with thread-safe connection pooling. The library can connect transparently to multiple database systems. It has zero runtime configuration and connection is specified via a URL scheme.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
Requires: pkg-config
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libzdb.so.*
%doc AUTHORS COPYING
%files devel
%defattr(-,root,root)
%{_includedir}/zdb/Connection.h
%{_includedir}/zdb/ConnectionPool.h
%{_includedir}/zdb/Exception.h
%{_includedir}/zdb/PreparedStatement.h
%{_includedir}/zdb/ResultSet.h
%{_includedir}/zdb/SQLException.h
%{_includedir}/zdb/URL.h
%{_includedir}/zdb/zdb.h
%{_libdir}/libzdb.a
%{_libdir}/libzdb.la
%{_libdir}/libzdb.so
%{_libdir}/pkgconfig/zdb.pc
%doc CHANGES README
%changelog
* Mon Feb 01 2016 Automatic Build System <autodist@mambasoft.it> 3.1-1mamba
- automatic update by autodist
* Fri May 15 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 3.0-2mamba
- rebuilt with mariadb
* Sat Aug 09 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 3.0-1mamba
- package created using the webbuild interface