package created with autospec [release 0.2.1-1mamba;Tue Jan 20 2026]
This commit is contained in:
@@ -1,2 +1,6 @@
|
||||
# hyprwire
|
||||
|
||||
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.
|
||||
|
||||
|
||||
@@ -0,0 +1,80 @@
|
||||
Name: hyprwire
|
||||
Version: 0.2.1
|
||||
Release: 1mamba
|
||||
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: 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 Jan 20 2026 Silvan Calarco <silvan@openmamba.org> 0.2.1-1mamba
|
||||
- package created with autospec
|
||||
Reference in New Issue
Block a user