package created using the webbuild interface [release 1.5.8-1mamba;Mon Jan 20 2025]

This commit is contained in:
Silvan Calarco 2025-01-20 15:14:53 +01:00
parent a44f033a72
commit 3b0bb635b7
2 changed files with 61 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libjuice # libjuice
JUICE is a UDP Interactive Connectivity Establishment library.

59
libjuice.spec Normal file
View File

@ -0,0 +1,59 @@
Name: libjuice
Version: 1.5.8
Release: 1mamba
Summary: A UDP Interactive Connectivity Establishment library
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/paullouisageneau/libjuice
## GITSOURCE https://github.com/paullouisageneau/libjuice.git v1.5.8
Source: https://github.com/paullouisageneau/libjuice.git/v%{version}/libjuice-%{version}.tar.bz2
License: MPL-2.0
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
%description
JUICE is a UDP Interactive Connectivity Establishment library.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%prep
%setup -q
%build
%cmake
%cmake_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%cmake_install
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_libdir}/libjuice.so.*
%doc LICENSE
%files devel
%defattr(-,root,root)
%dir %{_includedir}/juice
%{_includedir}/juice/juice.h
%{_libdir}/libjuice.so
%dir %{_libdir}/cmake/LibJuice
%{_libdir}/cmake/LibJuice/LibJuice*.cmake
%doc README.md
%changelog
* Mon Jan 20 2025 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.8-1mamba
- package created using the webbuild interface