98 lines
3.1 KiB
RPMSpec
98 lines
3.1 KiB
RPMSpec
Name: hyprwire
|
|
Version: 0.3.1
|
|
Release: 3mamba
|
|
Summary: A fast and consistent wire protocol for IPC
|
|
Group: Development/Libraries
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan@openmamba.org>
|
|
URL: https://github.com/hyprwm/hyprwire
|
|
Source: https://github.com/hyprwm/hyprwire.git/v%{version}/hyprwire-%{version}.tar.bz2
|
|
License: BSD-3-Clause
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: libffi-devel
|
|
BuildRequires: libgcc
|
|
BuildRequires: libhyprutils-devel
|
|
BuildRequires: libstdc++6-devel
|
|
BuildRequires: pugixml-devel
|
|
## AUTOBUILDREQ-END
|
|
BuildRequires: libhyprutils-devel >= 0:0.14.0-1mamba
|
|
BuildRequires: libhyprutils >= 0:0.13.1-1mamba
|
|
BuildRequires: meson
|
|
BuildRequires: cmake
|
|
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|
|
|
%description
|
|
Hyprwire is a fast and consistent wire protocol, and its implementation.
|
|
This is essentially a "method" for processes to talk to each other.
|
|
Hyprwire is heavily inspired by Wayland, and provides a strict, fast, and simple to use protocol for inter-process communication.
|
|
|
|
%package -n lib%{name}
|
|
Group: System/Libraries
|
|
Summary: Shared libraries for %{name}
|
|
|
|
%description -n lib%{name}
|
|
This package contains shared libraries for %{name}.
|
|
|
|
%package -n lib%{name}-devel
|
|
Group: Development/Libraries
|
|
Summary: Development files for %{name}
|
|
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|
|
|
%description -n lib%{name}-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)
|
|
%{_bindir}/hyprwire-scanner
|
|
|
|
%files -n lib%{name}
|
|
%defattr(-,root,root)
|
|
%{_libdir}/libhyprwire.so.*
|
|
|
|
%files -n lib%{name}-devel
|
|
%defattr(-,root,root)
|
|
%dir %{_includedir}/hyprwire
|
|
%{_includedir}/hyprwire/*
|
|
%{_libdir}/libhyprwire.so
|
|
%{_libdir}/pkgconfig/hyprwire.pc
|
|
%dir %{_libdir}/cmake/hyprwire-scanner
|
|
%{_libdir}/cmake/hyprwire-scanner/hyprwire-scanner-*.cmake
|
|
%{_libdir}/pkgconfig/hyprwire-scanner.pc
|
|
%doc README.md
|
|
|
|
%changelog
|
|
* Tue Jul 21 2026 Automatic Build System <autodist@openmamba.org> 0.3.1-3mamba
|
|
- rebuilt by autoport with build requirements: libhyprutils-devel>=0:0.14.0-1mamba
|
|
|
|
* Fri Jun 05 2026 Automatic Build System <autodist@openmamba.org> 0.3.1-2mamba
|
|
- rebuilt by autoport with build requirements: libhyprutils>=0:0.13.1-1mamba
|
|
|
|
* Sun Apr 26 2026 Automatic Build System <autodist@openmamba.org> 0.3.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Mon Apr 06 2026 Automatic Build System <autodist@openmamba.org> 0.3.0-2mamba
|
|
- rebuilt by autoport with build requirements: libhyprutils-devel>=0:0.12.0-1mamba
|
|
|
|
* Wed Feb 04 2026 Automatic Build System <autodist@openmamba.org> 0.3.0-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Jan 20 2026 Silvan Calarco <silvan@openmamba.org> 0.2.1-1mamba
|
|
- package created with autospec
|