libevhtp/libevhtp.spec

96 lines
2.8 KiB
RPMSpec

Name: libevhtp
Version: 1.2.18
Release: 1mamba
Summary: An API which manages threads and thread-pools in an event based manner
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/Yellow-Camper/libevhtp
Source: https://github.com/criticalstack/libevhtp.git/%{version}/libevhtp-%{version}.tar.bz2
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libevent-devel
BuildRequires: libonig-devel
## AUTOBUILDREQ-END
# seaf-server (as of 4.2.2) crashes if not using internal libonig and if libevhtp > 1.2.9
#BuildConflicts: libonig-devel
BuildRequires: cmake
%description
Libevhtp is an API which manages threads and thread-pools in an event based manner. This API requires libevent with threading support.
%package devel
Group: Development/Libraries
Summary: An API which manages threads and thread-pools in an event based manner
Requires: libevhtp = %{?epoch:%epoch:}%{version}-%{release}
%description devel
Libevhtp is an API which manages threads and thread-pools in an event based manner. This API requires libevent with threading support.
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q
sed -i 's|"lib"|"%{_lib}"|' CMakeLists.txt
sed -i 's|lib/cmake|%{_lib}/cmake|' CMakeLists.txt
sed -i 's|/lib/pkgconfig|/%{_lib}/pkgconfig|' CMakeLists.txt
%build
%cmake -d build \
-DEVHTP_DISABLE_SSL=ON \
-DEVHTP_BUILD_SHARED=ON
# See http://manual.seafile.com/build_seafile/server.html#libevhtp
# FIXME: shared needs soname patch
# -DEVHTP_BUILD_SHARED=OFF
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_libdir}/libevhtp.so.*
%doc LICENSE
%files devel
%defattr(-,root,root)
%{_includedir}/evhtp.h
%dir %{_includedir}/evhtp
%{_includedir}/evhtp/*.h
%dir %{_includedir}/evhtp/sys
%{_includedir}/evhtp/sys/*.h
%{_libdir}/libevhtp.so
%{_libdir}/pkgconfig/evhtp.pc
%dir %{_libdir}/cmake/libevhtp
%{_libdir}/cmake/libevhtp/libevhtp*.cmake
%doc ChangeLog README.markdown
%changelog
* Fri Dec 30 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.18-1mamba
- update to 1.2.18
* Sun Dec 26 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.15-1mamba
- update to 1.2.15
* Sun May 24 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.9-1mamba
- update to 1.2.9
* Sun May 24 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.10-2mamba
- rebuilt shared
* Thu May 14 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.10-1mamba
- update to 1.2.10
* Sat Aug 09 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 1.2.9-1mamba
- package created using the webbuild interface