65d8d92689
Copy from devel:libraries:c_c++/libaio based on submit request 20024 from user dirkmueller OBS-URL: https://build.opensuse.org/request/show/20024 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libaio?expand=0&rev=9
102 lines
2.7 KiB
RPMSpec
102 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package libaio (Version 0.3.104)
|
|
#
|
|
# Copyright (c) 2009 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/
|
|
#
|
|
|
|
# norootforbuild
|
|
|
|
|
|
Name: libaio
|
|
License: LGPL v2.1 or later
|
|
Group: System/Libraries
|
|
AutoReqProv: on
|
|
# bug437293
|
|
%ifarch ppc64
|
|
Obsoletes: libaio-64bit
|
|
%endif
|
|
#
|
|
Version: 0.3.104
|
|
Release: 142
|
|
Summary: Linux-Native Asynchronous I/O Access Library
|
|
Source: libaio-%{version}.tar.bz2
|
|
Patch1: libaio-%{version}.diff
|
|
Patch2: libaio-optflags.diff
|
|
Patch3: 00_arches.patch
|
|
Patch500: ARM_io_getevents.diff
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
The Linux-native asynchronous I/O facility ("async I/O", or "aio") has
|
|
a richer API and capability set than the simple POSIX async I/O
|
|
facility. This library provides the Linux-native API for async I/O. The
|
|
POSIX async I/O facility requires this library to provide
|
|
kernel-accelerated async I/O capabilities, as do applications that
|
|
require the Linux-native async I/O API.
|
|
|
|
|
|
|
|
%package devel
|
|
License: LGPL v2.1 or later
|
|
Summary: Development Files for Linux-native Asynchronous I/O Access
|
|
Group: Development/Libraries/C and C++
|
|
Requires: libaio = %{version} glibc-devel
|
|
# bug437293
|
|
%ifarch ppc64
|
|
Obsoletes: libaio-devel-64bit
|
|
%endif
|
|
#
|
|
|
|
%description devel
|
|
This package provides header files to include, and libraries to link
|
|
with, for the Linux-native asynchronous I/O facility ("async I/O", or
|
|
"aio").
|
|
|
|
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch1
|
|
%patch2 -p1
|
|
%ifarch %arm
|
|
%patch3 -p1
|
|
%patch500 -p1
|
|
%endif
|
|
|
|
%build
|
|
%{__make} %{?jobs:-j%jobs} OPTFLAGS="$RPM_OPT_FLAGS"
|
|
|
|
%install
|
|
make install prefix=%{buildroot}/usr libdir=%{buildroot}/%{_lib}
|
|
mkdir -p %{buildroot}%{_libdir}
|
|
%{__ln_s} -v /%{_lib}/$(readlink %{buildroot}/%{_lib}/%{name}.so) %{buildroot}%{_libdir}/%{name}.so
|
|
%{__rm} -v %{buildroot}/%{_lib}/%{name}.so
|
|
%{__rm} -v %{buildroot}/%{_lib}/%{name}.a
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%defattr(644,root,root,755)
|
|
%doc COPYING TODO
|
|
%attr(0755,root,root) /%{_lib}/libaio.*
|
|
|
|
%files devel
|
|
%defattr(644,root,root,755)
|
|
/usr/include/libaio.h
|
|
%_libdir/libaio.so
|
|
|
|
%changelog
|