]> git.pld-linux.org Git - packages/libtorrent-rasterbar.git/blame - libtorrent-rasterbar.spec
- up to 0.15.0
[packages/libtorrent-rasterbar.git] / libtorrent-rasterbar.spec
CommitLineData
2e00201e
ZU
1Summary: A C++ BitTorrent library
2Summary(hu.UTF-8): C++ BitTorrent könyvtár
3Summary(pl.UTF-8): Biblioteka BitTorrenta napisana w C++
4Name: libtorrent-rasterbar
2ed87f41 5Version: 0.15.0
6Release: 1
2e00201e
ZU
7License: BSD
8Group: Libraries
0f532b6d 9Source0: http://libtorrent.googlecode.com/files/%{name}-%{version}.tar.gz
2ed87f41 10# Source0-md5: 3f8253457557a3f4778fa18fa076c5c9
2e00201e 11URL: http://www.rasterbar.com/products/libtorrent/
6873d9da
AF
12Patch0: bashizm.patch
13BuildRequires: GeoIP-devel
2e00201e
ZU
14BuildRequires: autoconf
15BuildRequires: automake
16BuildRequires: boost-devel >= 1.35.0
6873d9da 17BuildRequires: boost-python-devel
2e00201e 18BuildRequires: libstdc++-devel
d412ac15
ZU
19BuildRequires: libtool
20BuildRequires: openssl-devel
6873d9da
AF
21BuildRequires: pkgconfig >= 1:0.20
22BuildRequires: python-devel
7f0d431f 23BuildRequires: python-modules
24BuildRequires: rpm-pythonprov
2e00201e 25BuildRequires: sed >= 4.0
d412ac15 26BuildRequires: util-linux-ng
401fe683 27BuildRequires: which
2e00201e 28BuildRequires: zlib-devel
d412ac15 29Obsoletes: rb_libtorrent
2e00201e
ZU
30BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
31
32%description
33libtorrent-rasterbar is a C++ library that aims to be a good
34alternative to all the other BitTorrent implementations around. It is
35a library and not a full featured client, although it comes with a
36working example client.
37
38Its main goals are to be very efficient (in terms of CPU and memory
39usage) as well as being very easy to use both as a user and developer.
40
41%description -l hu.UTF-8
42libtorrent-rasterbar egy C++ könyvtár, amely egy jó alternatívája
697b38ac
JB
43kíván lenni az összes többi BitTorrent implementációjának. Ez "csak"
44egy könyvtár, és nem egy szolgáltatásgazdag kliens, habár ad egy
45működő példa-klienst.
2e00201e 46
697b38ac
JB
47A fő céljai, hogy nagyon hatékony legyen (CPU és memória-használat) és
48könnyű legyen használni mind a felhasználóknak, mind a fejlesztőknek.
2e00201e
ZU
49
50%description -l pl.UTF-8
697b38ac
JB
51libtorrent-rasterbar jest napisaną w C++ biblioteką, która aspiruje do
52bycia dobrą alternatywą dla wszystkich innych implementacji
53BitTorrenta. Jest to biblioteka a nie pełnoprawny klient, aczkolwiek
2e00201e
ZU
54pakiet zawiera działającego przykładowego klienta.
55
56Główne cele biblioteki to bycie bardzo efektywną (w rozumieniu
697b38ac
JB
57wykorzystania procesora i pamięci) jak również łatwą w użyciu zarówno
58dla użytkownika, jak i programisty.
2e00201e
ZU
59
60%package devel
61Summary: Header files for %{name} library
62Summary(pl.UTF-8): Pliki nagłówkowe biblioteki %{name}
63License: BSD, zlib/libpng License, Boost Software License
64Group: Development/Libraries
65Requires: %{name} = %{version}-%{release}
66Requires: boost-devel
67Requires: openssl-devel
d412ac15 68Obsoletes: rb_libtorrent-devel
2e00201e
ZU
69
70%description devel
71The libtorrent-rasterbar-devel package contains libraries and header
72files for developing applications that use libtorrent-rasterbar.
73
74The various source and header files included in this package are
75licensed under the revised BSD, zlib/libpng, and Boost Public
76licenses.
77
78%description devel -l hu.UTF-8
79A libtorrent-rasterbar-devel csomag tartalmazza a könyvtári és
80fejlesztői fájlokat, amellyel libtorrent-rasterbar-t használó
81alkalmazásokat fejleszthetsz.
82
83%description devel -l pl.UTF-8
84Pakiet libtorrent-rasterbar-devel zawiera biblioteki i nagłówki do
85rozwijania aplikacji używających libtorrent-rasterbar.
86
697b38ac
JB
87Różne pliki źródłowe i nagłówki dostarczone z tym pakietem są
88licencjonowane pod zmienioną licencją BSD, zlib/libpng i Boost Public
89License.
2e00201e
ZU
90
91%package static
92Summary: Static %{name} library
93Summary(pl.UTF-8): Statyczna biblioteka %{name}
94Group: Development/Libraries
95Requires: %{name}-devel = %{version}-%{release}
d412ac15 96Obsoletes: rb_libtorrent-static
2e00201e
ZU
97
98%description static
99Static libtorrent-rasterbar library.
100
101%description static -l hu.UTF-8
102Statikus libtorrent-rasterbar könyvtár.
103
104%description static -l pl.UTF-8
105Statyczna biblioteka libtorrent-rasterbar.
106
6873d9da
AF
107%package -n python-libtorrent-rasterbar
108Summary: Python bindings for libtorrent-rasterbar
109Group: Libraries/Python
110Requires: %{name} = %{version}-%{release}
111
112%description -n python-libtorrent-rasterbar
113Python bindings for libtorrent-rasterbar.
114
2e00201e
ZU
115%prep
116%setup -q
6873d9da 117%patch0 -p1
ef45903e 118%{__sed} -i 's/ACLOCAL_AMFLAGS = -I m4/#ACLOCAL_AMFLAGS = -I m4/' Makefile.am
d412ac15 119
2e00201e
ZU
120## Some of the sources and docs are executable, which makes rpmlint against
121## the resulting -debuginfo and -devel packages, respectively, quite angry. :]
122find src docs -type f | xargs chmod a-x
123find -type f -regex '.*\.[hc]pp' | xargs chmod a-x
124## The RST files are the sources used to create the final HTML files; and are
125## not needed.
126rm -f docs/*.rst
2e00201e
ZU
127
128%build
2e00201e 129%{__libtoolize}
37216aa2 130%{__aclocal} -I m4
2e00201e
ZU
131%{__autoconf}
132%{__automake}
133%configure \
6f20c549 134 LIBS="-lpthread -lrt" \
6873d9da 135 --enable-python-binding \
a5caad3e 136 --with-boost-libdir=%{_libdir} \
d412ac15
ZU
137 --with-boost-system=boost_system \
138 --with-boost-filesystem=boost_filesystem \
139 --with-boost-thread=boost_thread \
140 --with-boost-regex=boost_regex \
141 --with-boost-program-options=boost_program_options \
6873d9da
AF
142 --with-asio=system \
143 --with-zlib=system \
144 --with-libgeoip=system \
d412ac15 145 --with-ssl
2e00201e 146
7f0d431f 147%{__make}
2e00201e
ZU
148
149%install
150rm -rf $RPM_BUILD_ROOT
151## Ensure that we preserve our timestamps properly.
152#export CPPROG="%{__cp} -p"
153#make install DESTDIR=$RPM_BUILD_ROOT INSTALL="%{__install} -c -p"
154%{__make} install \
155 DESTDIR=$RPM_BUILD_ROOT
156
157## Do the renaming due to the somewhat limited %{_bindir} namespace.
158rename client torrent_client $RPM_BUILD_ROOT%{_bindir}/*
159
160%clean
161rm -rf $RPM_BUILD_ROOT
162
163%post -p /sbin/ldconfig
164%postun -p /sbin/ldconfig
165
166%files
167%defattr(644,root,root,755)
168%doc AUTHORS ChangeLog COPYING README
169%attr(755,root,root) %{_libdir}/libtorrent-rasterbar.so*
170
171%files devel
172%defattr(644,root,root,755)
173%doc docs/
174%attr(755,root,root) %{_libdir}/libtorrent-rasterbar.so
175%{_libdir}/libtorrent-rasterbar.la
176%{_pkgconfigdir}/libtorrent-rasterbar.pc
177%{_includedir}/libtorrent
178
179%files static
180%defattr(644,root,root,755)
181%{_libdir}/libtorrent-rasterbar.a
6873d9da
AF
182
183%files -n python-libtorrent-rasterbar
817b2250 184%defattr(644,root,root,755)
6873d9da
AF
185%{py_sitedir}/libtorrent.so
186%{py_sitedir}/python_libtorrent-*.egg-info
This page took 0.048422 seconds and 4 git commands to generate.