%global oname serf Name: libserf Version: 1.3.8 Release: 1%{?_dist_release} Summary: High-Performance Asynchronous HTTP Client Library Summary(ja): 高性能な非同期 HTTP クライアントのライブラリ License: ASL 2.0 Group: System Environment/Libraries URL: http://code.google.com/p/serf Source0: https://serf.googlecode.com/files/serf-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRequires: apr-devel BuildRequires: apr-util-devel BuildRequires: krb5-devel BuildRequires: openssl-devel BuildRequires: pkgconfig BuildRequires: scons BuildRequires: zlib-devel %description The serf library is a C-based HTTP client library built upon the Apache Portable Runtime (APR) library. It multiplexes connections, running the read/write communication asynchronously. Memory copies and transformations are kept to a minimum to provide high performance operation. %package devel Summary: Development files for %{name} Summary(ja): %{name} の開発用ファイル群 Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} Requires: apr-devel%{?_isa} %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. %prep %setup -q -n %{oname}-%{version} # Shared library versioning support in scons is worse than awful... # minimally, here fix the soname to match serf-1.2.x. Minor version # handling should be fixed too; really requires better upstream support: # http://scons.tigris.org/issues/show_bug.cgi?id=2869 sed -i '/SHLIBVERSION/s/MAJOR/0/' SConstruct %build scons \ CFLAGS="%{optflags}" \ PREFIX=%{_prefix} \ LIBDIR=%{_libdir} \ GSSAPI=%{_prefix} \ %{?_smp_mflags} %install scons install --install-sandbox=%{buildroot} find %{buildroot} -name '*.*a' -exec rm -vf {} ';' %check scons %{?_smp_mflags} check || true %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files %doc CHANGES LICENSE NOTICE README design-guide.txt %{_libdir}/*.so.* %files devel %{_includedir}/%{oname}-1/ %{_libdir}/*.so %{_libdir}/pkgconfig/%{oname}*.pc %changelog * Sat Dec 13 2014 Ryoichi INAGAKI - 1.3.8-1 - updated to 1.3.8 * Sun Mar 16 2014 NAKAMURA Kenta - 1.3.4-2 - initial build for Vine Linux * Mon Feb 17 2014 Joe Orton - 1.3.4-1 - update to 1.3.4 * Tue Dec 10 2013 Joe Orton - 1.3.3-1 - update to 1.3.3 * Wed Nov 6 2013 Joe Orton - 1.3.2-1 - update to 1.3.2 - require krb5-devel for libgssapi (#1027011) * Sat Aug 03 2013 Fedora Release Engineering - 1.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild * Mon Jun 17 2013 Christopher Meng - 1.2.1-3 - SPEC cleanup. * Thu Jun 13 2013 Christopher Meng - 1.2.1-2 - Fix the permission of the library. * Sun Jun 09 2013 Christopher Meng - 1.2.1-1 - Initial Package.