|
Last change
on this file since 659 was 656, checked in by valerius, 10 years ago |
|
spec: libaio: Release initial version 0.0.1-1
|
|
File size:
1.5 KB
|
| Line | |
|---|
| 1 | Summary: Port of Asynchronous I/O support from glibc.
|
|---|
| 2 | Name: libaio
|
|---|
| 3 | Version: 0.0.1
|
|---|
| 4 | Release: 1%{?dist}
|
|---|
| 5 | License: GPLv2, LGPL 2.1
|
|---|
| 6 | URL: https://ftp.gnu.org/gnu/libc/
|
|---|
| 7 | Group: Development/Libraries
|
|---|
| 8 | Source: libaio-0.0.1.zip
|
|---|
| 9 | BuildRequires: gcc
|
|---|
| 10 | BuildRequires: libc-devel
|
|---|
| 11 |
|
|---|
| 12 | %description
|
|---|
| 13 | Asynchronous I/O support library does the support of
|
|---|
| 14 | asynchronous I/O requests executing, e.g., read/write/list i/o. The
|
|---|
| 15 | requests are queued and are executed in background, with consequent
|
|---|
| 16 | further signal delivery or thread creation.
|
|---|
| 17 |
|
|---|
| 18 | %package devel
|
|---|
| 19 | License: GPLv2, LGPL 2.1
|
|---|
| 20 | Summary: Asynchronous I/O support library
|
|---|
| 21 | Group: Development/Libraries
|
|---|
| 22 |
|
|---|
| 23 | %description devel
|
|---|
| 24 | Asynchronous I/O support library does the support of
|
|---|
| 25 | asynchronous I/O requests executing, e.g., read/write/list i/o. The
|
|---|
| 26 | requests are queued and are executed in background, with consequent
|
|---|
| 27 | further signal delivery or thread creation.
|
|---|
| 28 |
|
|---|
| 29 | %prep
|
|---|
| 30 | %setup -q -n %{name}-%{version}
|
|---|
| 31 |
|
|---|
| 32 | %build
|
|---|
| 33 | make %{?_smp_mflags}
|
|---|
| 34 |
|
|---|
| 35 | %install
|
|---|
| 36 | rm -rf %{buildroot}
|
|---|
| 37 | mkdir -p %{buildroot}%{_includedir}
|
|---|
| 38 | install -m 644 aio.h %{buildroot}%{_includedir}
|
|---|
| 39 | mkdir -p %{buildroot}%{_libdir}
|
|---|
| 40 | install -m 755 aio_dll.lib libaio.lib aio.dll %{buildroot}%{_libdir}
|
|---|
| 41 |
|
|---|
| 42 | %clean
|
|---|
| 43 | rm -rf %{buildroot}
|
|---|
| 44 |
|
|---|
| 45 | %files
|
|---|
| 46 | %defattr(-,root,root)
|
|---|
| 47 | %doc COPYING COPYING.LIB LICENSES README.OS2
|
|---|
| 48 | %{_libdir}/aio.dll
|
|---|
| 49 |
|
|---|
| 50 | %files devel
|
|---|
| 51 | %defattr(-,root,root)
|
|---|
| 52 | %{_includedir}/aio.h
|
|---|
| 53 | %{_libdir}/libaio.lib
|
|---|
| 54 | %{_libdir}/aio_dll.lib
|
|---|
| 55 | %{_libdir}/aio.dbg
|
|---|
| 56 |
|
|---|
| 57 | %changelog
|
|---|
| 58 | * Sun Feb 14 2016 Valery V.Sedletski <_valerius@mail.ru> 0.0.1-1
|
|---|
| 59 | - Initial package for version 0.0.1.
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.