21c0b59899
update to 0.8.4 (forwarded request 135937 from AndreasStieger) OBS-URL: https://build.opensuse.org/request/show/135946 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libdbi?expand=0&rev=9
91 lines
2.9 KiB
RPMSpec
91 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package libdbi
|
|
#
|
|
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define lname libdbi1
|
|
|
|
Summary: Database Independent Abstraction Layer for C
|
|
License: LGPL-2.1+
|
|
Group: Development/Libraries/C and C++
|
|
|
|
Name: libdbi
|
|
Version: 0.8.4
|
|
Release: 0
|
|
Url: http://libdbi.sourceforge.net/
|
|
Source: http://downloads.sourceforge.net/project/%{name}/%{name}/%{name}-%{version}/%{name}-%{version}.tar.gz
|
|
Source2: baselibs.conf
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
libdbi implements a database-independent abstraction layer in C, similar to the
|
|
DBI/DBD layer in Perl. Writing one generic set of code, programmers can
|
|
leverage the power of multiple databases and multiple simultaneous database
|
|
connections by using this framework.
|
|
|
|
%package -n %{lname}
|
|
Summary: Database Independent Abstraction Layer for C
|
|
Group: Development/Libraries/C and C++
|
|
|
|
%description -n %{lname}
|
|
libdbi implements a database-independent abstraction layer in C, similar to the
|
|
DBI/DBD layer in Perl. Writing one generic set of code, programmers can
|
|
leverage the power of multiple databases and multiple simultaneous database
|
|
connections by using this framework.
|
|
|
|
%package devel
|
|
Summary: Development files for libdbi (Database Independent Abstraction Layer for C)
|
|
Group: Development/Libraries/C and C++
|
|
Requires: %{lname} = %{version}
|
|
|
|
%description devel
|
|
The libdbi-devel package contains the header files and documentation
|
|
needed to develop applications with libdbi.
|
|
|
|
%prep
|
|
%setup -q
|
|
sed -i s,\-O20,\-O3,g configure
|
|
|
|
%build
|
|
%configure --disable-docs --disable-static
|
|
# this project fails to respect the rules for CFLAGS.
|
|
make %{?_smp_mflags} AM_CFLAGS="%optflags"
|
|
|
|
%install
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
rm %buildroot/%{_libdir}/libdbi.la
|
|
rm README.win32
|
|
|
|
%files -n %{lname}
|
|
%defattr(-,root,root)
|
|
%doc AUTHORS ChangeLog COPYING README*
|
|
%{_libdir}/libdbi.so.*
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%doc TODO doc/programmers-guide.pdf doc/programmers-guide/ doc/driver-guide.pdf doc/driver-guide/
|
|
%dir /usr/include/dbi
|
|
/usr/include/dbi/dbi.h
|
|
/usr/include/dbi/dbi-dev.h
|
|
/usr/include/dbi/dbd.h
|
|
%{_libdir}/libdbi.so
|
|
|
|
%post -n %{lname} -p /sbin/ldconfig
|
|
|
|
%postun -n %{lname} -p /sbin/ldconfig
|
|
|
|
%changelog
|