package created using the webbuild interface [release 45.0-1mamba;Sat Feb 10 2024]

This commit is contained in:
Silvan Calarco 2024-02-10 20:28:52 +01:00
parent c800cf9412
commit 53f4e8dd08
2 changed files with 59 additions and 0 deletions

View File

@ -1,2 +1,5 @@
# tecla
Tecla is a keyboard layout viewer.
Tecla uses GTK/Libadwaita for UI, and libxkbcommon to deal with keyboard maps.

56
tecla.spec Normal file
View File

@ -0,0 +1,56 @@
Name: tecla
Version: 45.0
Release: 1mamba
Summary: A keyboard layout viewer
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://gitlab.gnome.org/GNOME/tecla
Source: https://gitlab.gnome.org/GNOME/tecla.git/%{version}/tecla-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libadwaita-devel
BuildRequires: libglib-devel
BuildRequires: libgtk-devel
BuildRequires: libpango-devel
BuildRequires: libwayland-devel
BuildRequires: libxkbcommon-devel
## AUTOBUILDREQ-END
BuildRequires: meson
%description
Tecla is a keyboard layout viewer.
Tecla uses GTK/Libadwaita for UI, and libxkbcommon to deal with keyboard maps.
%debug_package
%prep
%setup -q
%build
%meson
%meson_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%meson_install
%find_lang %{name} || touch %{name}.lang
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files -f %{name}.lang
%defattr(-,root,root)
%{_bindir}/tecla
%{_datadir}/applications/org.gnome.Tecla.desktop
%{_datadir}/icons/hicolor/scalable/apps/org.gnome.Tecla.svg
%{_datadir}/icons/hicolor/symbolic/apps/org.gnome.Tecla-symbolic.svg
%{_datadir}/pkgconfig/tecla.pc
%doc LICENSE
%changelog
* Sat Feb 10 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 45.0-1mamba
- package created using the webbuild interface