]> git.pld-linux.org Git - packages/coronet.git/blame - coronet.spec
- pl
[packages/coronet.git] / coronet.spec
CommitLineData
079894be
JB
1Summary: Coronet library
2Summary(pl.UTF-8): Biblioteka coronet
a5d6aab7
ER
3Name: coronet
4Version: 0.23
5Release: 0.1
6License: LGPL
7Group: Libraries
8Source0: http://www.xmailserver.org/%{name}-%{version}.tar.gz
9# Source0-md5: 30637e028bd95d1e54774b5d07ab44b4
10URL: http://www.xmailserver.org/coronet-lib.html
11BuildRequires: libpcl-devel
12BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14%description
15The coronet library implements an epoll and coroutine based library
16that allows for async operations over certain kinds of files. Any file
17that supports poll(2) and the O_NONBLOCK fcntl(2) flag can be hosted;
18this includes like sockets and pipes.
19
20The coronet library uses the epoll support available in the 2.6 series
21of Linux kernels, and the libpcl library for coroutine support.
22
079894be
JB
23%description -l pl.UTF-8
24Biblioteka coronet to implementacja biblioteki opartnej na epoll i
25korutynach pozwalająca na operacje asynchroniczne na plikach
26wszelkiego rodzaju. Obsługiwany może być dowolny plik obsługujący
27poll(2) i flagę fcntl(2) O_NONBLOCK; obejmuje to gniazda i potoki.
28
29Biblioteka coronet wykorzystuje wywołanie epoll dostępne w jądrach
30Linuksa od wersji 2.6 oraz bibliotekę libpcl do obsługi korutyn.
31
a5d6aab7
ER
32%package devel
33Summary: Header files for coronet library
079894be 34Summary(pl.UTF-8): Pliki nagłówkowe biblioteki coronet
a5d6aab7
ER
35Group: Development/Libraries
36Requires: %{name} = %{version}-%{release}
37
38%description devel
39This is the package containing the header files for coronet library.
40
079894be
JB
41%description devel -l pl.UTF-8
42Pakiet zawierający pliki nagłówkowe biblioteki coronet.
43
a5d6aab7
ER
44%package static
45Summary: Static coronet library
079894be 46Summary(pl.UTF-8): Statyczna biblioteka coronet
a5d6aab7
ER
47Group: Development/Libraries
48Requires: %{name}-devel = %{version}-%{release}
49
50%description static
51Static coronet library.
52
079894be
JB
53%description static -l pl.UTF-8
54Statyczna biblioteka coronet.
55
a5d6aab7
ER
56%prep
57%setup -q
58
59%build
60%configure
61%{__make}
62
63%install
64rm -rf $RPM_BUILD_ROOT
65%{__make} install \
66 DESTDIR=$RPM_BUILD_ROOT
67
68%clean
69rm -rf $RPM_BUILD_ROOT
70
71%post -p /sbin/ldconfig
72%postun -p /sbin/ldconfig
73
74%files
75%defattr(644,root,root,755)
76%doc AUTHORS
77%attr(755,root,root) %{_libdir}/libcoronet.so.*.*.*
78
79%files devel
80%defattr(644,root,root,755)
079894be 81%attr(755,root,root) %{_libdir}/libcoronet.so
a5d6aab7
ER
82%{_libdir}/libcoronet.la
83%{_includedir}/coronet.h
84%{_mandir}/man3/coronet.3*
85
86%files static
87%defattr(644,root,root,755)
88%{_libdir}/libcoronet.a
This page took 0.064721 seconds and 4 git commands to generate.