package created using the webbuild interface [release 0.4.1-1mamba;Fri Oct 28 2022]

This commit is contained in:
Silvan Calarco 2024-01-06 05:28:19 +01:00
parent 12777f306d
commit a81f6ae6fd
2 changed files with 81 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libqaccessibilityclient
Library used when writing accessibility clients such as screen readers.

View File

@ -0,0 +1,79 @@
Name: libqaccessibilityclient
Version: 0.4.1
Release: 1mamba
Summary: Library used when writing accessibility clients such as screen readers
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://kde.org/
Source: https://download.kde.org/stable/libqaccessibilityclient/libqaccessibilityclient-%{version}.tar.xz
License: LGPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libstdc++6-devel
BuildRequires: qt5-qtbase-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
%description
Library used when writing accessibility clients such as screen readers.
%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}.
%package tools
Group: Applications/Accessibility
Summary: Utility applications for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description tools
This package contains utility applications for %{name}.
%debug_package
%prep
%setup -q
%build
%cmake -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libqaccessibilityclient-qt5.so.*
%doc AUTHORS COPYING
%files devel
%defattr(-,root,root)
%dir %{_includedir}/qaccessibilityclient
%{_includedir}/qaccessibilityclient/*.h
%{_libdir}/libqaccessibilityclient-qt5.so
%dir %{_libdir}/cmake/QAccessibilityClient
%{_libdir}/cmake/QAccessibilityClient/QAccessibility*.cmake
%doc ChangeLog README.md
%files tools
%defattr(-,root,root)
%{_bindir}/accessibleapps
%{_bindir}/dumper
%changelog
* Fri Oct 28 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 0.4.1-1mamba
- package created using the webbuild interface