forked from pool/ulfius
* Add functions `ulfius_send_http_request_with_limit` and `ulfius_send_http_streaming_request_max_header` * cmake: restore option `WITH_YDER` which was forgotten in last release refactor * cmake: split package build options in 3 (tar.gz, deb and rpm), and set all packages build to off by default OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/ulfius?expand=0&rev=61
113 lines
3.3 KiB
RPMSpec
113 lines
3.3 KiB
RPMSpec
#
|
|
# spec file for package ulfius
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
# Copyright (c) 2018-2023, Martin Hauke <mardnh@gmx.de>
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define _lto_cflags %{nil}
|
|
%define sover 2_7
|
|
Name: ulfius
|
|
Version: 2.7.15
|
|
Release: 0
|
|
Summary: Web Framework for REST Applications in C
|
|
License: MIT
|
|
Group: Development/Languages/C and C++
|
|
URL: https://github.com/babelouest/ulfius
|
|
Source: https://github.com/babelouest/ulfius/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: cmake
|
|
BuildRequires: gcc-c++
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(gnutls)
|
|
BuildRequires: pkgconfig(jansson) >= 2.1
|
|
BuildRequires: pkgconfig(libcurl)
|
|
BuildRequires: pkgconfig(libmicrohttpd) >= 0.9.51
|
|
BuildRequires: pkgconfig(liborcania) >= 2.3.2
|
|
BuildRequires: pkgconfig(libyder) >= 1.4.20
|
|
BuildRequires: pkgconfig(zlib)
|
|
|
|
%description
|
|
The library is based on GNU libmicrohttpd for the backend web server, jansson
|
|
for the json manipulation library, and libcurl for the HTTP/SMTP client API.
|
|
|
|
It can be used to create web applications in C programs.
|
|
|
|
%package -n libulfius%{sover}
|
|
Summary: Web Framework for REST Applications in C
|
|
Group: System/Libraries
|
|
|
|
%description -n libulfius%{sover}
|
|
The library is based on GNU libmicrohttpd for the backend web server, jansson
|
|
for the json manipulation library, and libcurl for the HTTP/SMTP client API.
|
|
|
|
It can be used to create web applications in C programs.
|
|
|
|
%package devel
|
|
Summary: Header files for ulfius
|
|
Group: Development/Libraries/C and C++
|
|
Requires: libcurl-devel
|
|
Requires: libgnutls-devel
|
|
Requires: libjansson-devel
|
|
Requires: libmicrohttpd-devel
|
|
Requires: libulfius%{sover} = %{version}
|
|
Requires: orcania-devel
|
|
Requires: yder-devel
|
|
Requires: zlib-devel
|
|
|
|
%description devel
|
|
Development and header files for libulfius.
|
|
|
|
%package -n uwsc
|
|
Summary: Ulfius WebSocket Client
|
|
Group: Productivity/Networking/Web/Utilities
|
|
|
|
%description -n uwsc
|
|
A simple command-line websocket client program.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
%cmake \
|
|
-DDOWNLOAD_DEPENDENCIES=OFF \
|
|
-DCMAKE_SHARED_LINKER_FLAGS="" \
|
|
-DCMAKE_INSTALL_PREFIX:PATH=/
|
|
%cmake_build
|
|
|
|
%install
|
|
%cmake_install
|
|
rm -rf %{buildroot}/%{_datadir}/doc/
|
|
|
|
%post -n libulfius%{sover} -p /sbin/ldconfig
|
|
%postun -n libulfius%{sover} -p /sbin/ldconfig
|
|
|
|
%files -n libulfius%{sover}
|
|
%license LICENSE
|
|
%{_libdir}/libulfius.so.*
|
|
|
|
%files devel
|
|
%doc CHANGELOG.md README.md API.md
|
|
%{_includedir}/ulfius.h
|
|
%{_includedir}/ulfius-cfg.h
|
|
%{_libdir}/libulfius.so
|
|
%{_libdir}/cmake/Ulfius
|
|
%{_libdir}/pkgconfig/libulfius.pc
|
|
|
|
%files -n uwsc
|
|
%{_bindir}/uwsc
|
|
%{_mandir}/man1/uwsc.1%{?ext_man}
|
|
|
|
%changelog
|