You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
librist/librist.spec

108 lines
2.5 KiB

2 years ago
%global somajor 4
# Tests are flaky in Koji
%bcond_with tests
2 years ago
Name: librist
Version: 0.2.7
Release: 1%{?dist}
Summary: Library for Reliable Internet Stream Transport (RIST) protocol
# Everything used is BSD-2-Clause except getopt-shim, which is ISC as well
License: BSD-2-Clause and ISC
URL: https://code.videolan.org/rist/librist
Source0: %{url}/-/archive/v%{version}/librist-v%{version}.tar.gz
# Backport from upstream
## From: https://code.videolan.org/rist/librist/-/commit/809390b3b75a259a704079d0fb4d8f1b5f7fa956
Patch0001: 0001-meson.build-fix-reference-to-libcjson-pc-file.patch
BuildRequires: gcc
BuildRequires: meson
BuildRequires: ninja-build
BuildRequires: libcmocka-devel
BuildRequires: mbedtls-devel
BuildRequires: pkgconfig(libcjson)
%description
A library that can be used to speak the RIST protocol (as defined by Video
Services Forum (VSF) Technical Recommendations TR-06-1 and TR-06-2).
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%package doc
Summary: Technical documentation for %{name}
BuildArch: noarch
%description doc
The %{name}-doc package contains technical documentation for
developing applications that use %{name}.
%package -n rist-tools
Summary: User tools for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description -n rist-tools
This package contains the user tools for the RIST protocol library.
%prep
%autosetup -n %{name}-v%{version} -p1
%build
%meson
%meson_build
%install
%meson_install
# Strip unwanted executable bits
chmod -x %{buildroot}%{_includedir}/%{name}/*.h
chmod -x docs/*
# Install documentation
mkdir -p %{buildroot}%{_docdir}/%{name}
cp -av docs/* %{buildroot}%{_docdir}/%{name}
%if %{with tests}
2 years ago
%check
%meson_test
%endif
2 years ago
%files
%doc README.md CONTRIBUTING.md
%license COPYING
%{_libdir}/*.so.%{somajor}{,.*}
%files devel
%{_includedir}/%{name}/
%{_libdir}/*.so
%{_libdir}/pkgconfig/*.pc
%files doc
%license COPYING
# Co-own with librist package
%dir %{_docdir}/%{name}
%doc %{_docdir}/%{name}/VSF_TR-06-1.pdf
%doc %{_docdir}/%{name}/VSF_TR-06-2.pdf
%doc %{_docdir}/%{name}/librist_logo.png
%files -n rist-tools
%{_bindir}/rist*
%changelog
* Wed Feb 15 2023 Neal Gompa <ngompa@fedoraproject.org> - 0.2.7-1
- Initial package