package created using the webbuild interface [release 5.65.0-1mamba;Wed Jan 01 2020]

This commit is contained in:
Silvan Calarco 2024-01-05 17:03:44 +01:00
parent 9bad9cc99d
commit 2d9e9af6af
2 changed files with 98 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# qqc2-desktop-style
KDE Frameworks 5 QtQuickControls 2 style that uses QWidget's QStyle for painting.

96
qqc2-desktop-style.spec Normal file
View File

@ -0,0 +1,96 @@
%define majver %(echo %version | cut -d. -f1-2)
Name: qqc2-desktop-style
Version: 5.65.0
Release: 1mamba
Summary: KDE Frameworks 5 QtQuickControls 2 style that uses QWidget's QStyle for painting
Group: Graphical Desktop/Look 'n' feel
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.kde.org
Source: https://download.kde.org/stable/frameworks/5.65/qqc2-desktop-style-%{version}.tar.xz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ldconfig
BuildRequires: libgcc
BuildRequires: libkauth-devel
BuildRequires: libkcodecs-devel
BuildRequires: libkconfig-devel
BuildRequires: libkconfigwidgets-devel
BuildRequires: libkcoreaddons-devel
BuildRequires: libkiconthemes-devel
BuildRequires: libkirigami2-devel
BuildRequires: libkwidgetsaddons-devel
BuildRequires: libqt5-devel
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRequires: cmake
BuildRequires: rpm-macros-kde5
BuildRequires: extra-cmake-modules
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
KDE Frameworks 5 QtQuickControls 2 style that uses QWidget's QStyle for painting.
%package -n lib%{name}
Group: System/Libraries
Summary: KDE Frameworks 5 QtQuickControls 2 style that uses QWidget's QStyle for painting
%description -n lib%{name}
KDE Frameworks 5 QtQuickControls 2 style that uses QWidget's QStyle for painting.
%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}.
%debug_package
%prep
%setup -q
%build
%cmake_kde5 -d build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall -C build
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -n lib%{name}
/sbin/ldconfig
exit 0
%postun -n lib%{name}
/sbin/ldconfig
exit 0
%files -n lib%{name}
%defattr(-,root,root)
%{_libdir}/qt5/plugins/kf5/kirigami/org.kde.desktop.so
%dir %{_libdir}/qt5/qml/QtQuick/Controls.2
%dir %{_libdir}/qt5/qml/QtQuick/Controls.2/org.kde.desktop
%{_libdir}/qt5/qml/QtQuick/Controls.2/org.kde.desktop/*
%dir %{_libdir}/qt5/qml/org/kde/qqc2desktopstyle
%dir %{_libdir}/qt5/qml/org/kde/qqc2desktopstyle/private
%{_libdir}/qt5/qml/org/kde/qqc2desktopstyle/private/*
%files -n lib%{name}-devel
%defattr(-,root,root)
%dir %{_kde5_libdir}/cmake/KF5QQC2DeskopStyle
%{_kde5_libdir}/cmake/KF5QQC2DeskopStyle/KF5QQC2DeskopStyleConfig*.cmake
%dir %{_kde5_libdir}/cmake/KF5QQC2DesktopStyle
%{_kde5_libdir}/cmake/KF5QQC2DesktopStyle/KF5QQC2DesktopStyleConfig*.cmake
%changelog
* Wed Jan 01 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 5.65.0-1mamba
- package created using the webbuild interface