]> git.pld-linux.org Git - packages/eio.git/blame - eio.spec
- new
[packages/eio.git] / eio.spec
CommitLineData
774e5c30
JB
1#
2# Conditional build:
3%bcond_without static_libs # don't build static libraries
4#
5Summary: Enlightenment Input Output Library
6Summary(pl.UTF-8): Enlightenment Input Output - biblioteka wejścia/wyjścia z projektu Enlightenment
7Name: eio
8Version: 0.1.0.65643
9Release: 1
10License: LGPL v2.1+
11Group: Libraries
12Source0: http://download.enlightenment.org/snapshots/LATEST/%{name}-%{version}.tar.bz2
13# Source0-md5: 244d07702020c919a6f99b2b1856da9a
14URL: http://trac.enlightenment.org/e/wiki/Eio
15BuildRequires: eina-devel >= 1.0.0
16BuildRequires: ecore-devel >= 1.0.0
17BuildRequires: pkgconfig >= 1:0.22
18Requires: eina >= 1.0.0
19Requires: ecore >= 1.0.0
20BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22%description
23This library is intended to provide non blocking I/O by using thread
24for all operation that may block. It depends only on eina and ecore
25right now. It should integrate all the features/functions of
26Ecore_File that could block.
27
28%description -l pl.UTF-8
29Ta biblioteka na za zadanie zapewniać nieblokujące operacje we/wy
30poprzez użycie wątków dla wszystkich operacji, które mogę być
31blokujące. Na razie wymaga tylko bibliotek eina i ecore. Powinna
32zawierać wszystkie funkcje Ecore_File, które mogą być blokujące.
33
34%package devel
35Summary: Header files for Eio library
36Summary(pl.UTF-8): Pliki nagłówkowe biblioteki Eio
37Group: Development/Libraries
38Requires: %{name} = %{version}-%{release}
39Requires: eina-devel >= 1.0.0
40Requires: ecore-devel >= 1.0.0
41
42%description devel
43Header files for Eio library.
44
45%description devel -l pl.UTF-8
46Pliki nagłówkowe biblioteki Eio.
47
48%package static
49Summary: Static Eio library
50Summary(pl.UTF-8): Statyczna biblioteka Eio
51Group: Development/Libraries
52Requires: %{name}-devel = %{version}-%{release}
53
54%description static
55Static Eio library.
56
57%description static -l pl.UTF-8
58Statyczna biblioteka Eio.
59
60%prep
61%setup -q
62
63%build
64%configure \
65 --disable-silent-rules \
66 %{!?with_static_libs:--disable-static}
67%{__make}
68
69%install
70rm -rf $RPM_BUILD_ROOT
71
72%{__make} install \
73 DESTDIR=$RPM_BUILD_ROOT
74
75%clean
76rm -rf $RPM_BUILD_ROOT
77
78%post -p /sbin/ldconfig
79%postun -p /sbin/ldconfig
80
81%files
82%defattr(644,root,root,755)
83%doc AUTHORS README
84%attr(755,root,root) %{_libdir}/libeio-ver-pre-svn-09.so.*.*.*
85%attr(755,root,root) %ghost %{_libdir}/libeio-ver-pre-svn-09.so.0
86
87%files devel
88%defattr(644,root,root,755)
89%attr(755,root,root) %{_libdir}/libeio.so
90%{_libdir}/libeio.la
91%{_includedir}/eio-0
92%{_pkgconfigdir}/eio.pc
93
94%if %{with static_libs}
95%files static
96%defattr(644,root,root,755)
97%{_libdir}/libeio.a
98%endif
This page took 0.178545 seconds and 4 git commands to generate.