package created using the webbuild interface [release 0.6.4-1mamba;Thu Nov 13 2025]

This commit is contained in:
2025-11-15 02:00:22 +01:00
parent 6f25262fd9
commit a3ac387eaa
2 changed files with 72 additions and 0 deletions
+3
View File
@@ -1,2 +1,5 @@
# hyprlang
The hypr configuration language is an extremely efficient, yet easy to work with, configuration language for linux applications.
It's user-friendly, easy to grasp, and easy to implement.
+69
View File
@@ -0,0 +1,69 @@
Name: hyprlang
Version: 0.6.4
Release: 1mamba
Summary: The official implementation library for the hypr config language
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://wiki.hyprland.org/Hypr-Ecosystem/hyprlang/
Source: https://github.com/hyprwm/hyprlang.git/v%{version}/hyprlang-%{version}.tar.bz2
License: BSD-3-Clause
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libhyprutils-devel
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
%description
The hypr configuration language is an extremely efficient, yet easy to work with, configuration language for linux applications.
It's user-friendly, easy to grasp, and easy to implement.
%package -n lib%{name}
Group: System/Libraries
Summary: The official implementation library for the hypr config language
%description -n lib%{name}
The hypr configuration language is an extremely efficient, yet easy to work with, configuration language for linux applications.
This package contains shared libraries for %{name}.
%package -n lib%{name}-devel
Group: Development/Libraries
Summary: Development files for %{name}
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 -n lib%{name}
%defattr(-,root,root)
%{_libdir}/libhyprlang.so.*
%doc LICENSE
%files -n lib%{name}-devel
%defattr(-,root,root)
%{_includedir}/hyprlang.hpp
%{_libdir}/libhyprlang.so
%{_libdir}/pkgconfig/hyprlang.pc
%doc README.md
%changelog
* Thu Nov 13 2025 Silvan Calarco <silvan.calarco@mambasoft.it> 0.6.4-1mamba
- package created using the webbuild interface