86 lines
2.2 KiB
RPMSpec
86 lines
2.2 KiB
RPMSpec
|
|
# spec file for qt5-qtwebchannel
|
||
|
|
%global qt_module qtwebchannel
|
||
|
|
|
||
|
|
Name: qt5-%{qt_module}
|
||
|
|
Version: 5.11.1
|
||
|
|
Release: 4
|
||
|
|
Summary: Qt5 - WebChannel component
|
||
|
|
License: LGPLv2 with exceptions or GPLv3 with exceptions
|
||
|
|
URL: http://qt.io
|
||
|
|
%global major_minor %(echo %{version} | cut -d. -f1-2)
|
||
|
|
Source0: https://download.qt.io/archive/qt/5.11/5.11.1/submodules/qtwebchannel-everywhere-src-5.11.1.tar.xz
|
||
|
|
|
||
|
|
BuildRequires: qt5-qtbase-devel >= %{version}
|
||
|
|
BuildRequires: qt5-qtbase-private-devel
|
||
|
|
%{?_qt5:Requires: %{_qt5}%{?_isa} = %{_qt5_version}}
|
||
|
|
BuildRequires: qt5-qtdeclarative-devel
|
||
|
|
BuildRequires: qt5-qtwebsockets-devel
|
||
|
|
|
||
|
|
%package devel
|
||
|
|
Summary: Development files for %{name}
|
||
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||
|
|
Requires: qt5-qtbase-devel%{?_isa}
|
||
|
|
|
||
|
|
%package help
|
||
|
|
Summary: Programming examples for %{name}
|
||
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||
|
|
|
||
|
|
%description
|
||
|
|
This package provides a library for seamless integration of C++
|
||
|
|
and QML applications with HTML/JavaScript clients. Any QObject can be
|
||
|
|
published to remote clients, where its public API becomes available.
|
||
|
|
|
||
|
|
%description devel
|
||
|
|
This package provides development files for %{name}
|
||
|
|
|
||
|
|
%description help
|
||
|
|
This package provides examples files for %{name}
|
||
|
|
|
||
|
|
|
||
|
|
%prep
|
||
|
|
%setup -q -n %{qt_module}-everywhere-src-%{version}
|
||
|
|
|
||
|
|
|
||
|
|
%build
|
||
|
|
%{qmake_qt5}
|
||
|
|
%make_build
|
||
|
|
|
||
|
|
|
||
|
|
%install
|
||
|
|
make install INSTALL_ROOT=%{buildroot}
|
||
|
|
|
||
|
|
pushd %{buildroot}%{_qt5_libdir}
|
||
|
|
for prl_file in libQt5*.prl; do
|
||
|
|
sed -i -e "/^QMAKE_PRL_BUILD_DIR/d" "${prl_file}"
|
||
|
|
if [[ -f "$(basename ${prl_file} .prl).so" ]]; then
|
||
|
|
rm -fv "$(basename ${prl_file} .prl).la"
|
||
|
|
sed -i -e "/^QMAKE_PRL_LIBS/d" "${prl_file}"
|
||
|
|
fi
|
||
|
|
done
|
||
|
|
popd
|
||
|
|
|
||
|
|
%ldconfig_scriptlets
|
||
|
|
|
||
|
|
%files
|
||
|
|
%license LICENSE.*
|
||
|
|
%{_qt5_libdir}/libQt5WebChannel.so.5*
|
||
|
|
%{_qt5_archdatadir}/qml/QtWebChannel/
|
||
|
|
|
||
|
|
%files devel
|
||
|
|
%{_qt5_headerdir}/QtWebChannel/
|
||
|
|
%{_qt5_libdir}/libQt5WebChannel.prl
|
||
|
|
%{_qt5_libdir}/libQt5WebChannel.so
|
||
|
|
|
||
|
|
%dir %{_qt5_libdir}/cmake/Qt5WebChannel/
|
||
|
|
%{_qt5_archdatadir}/mkspecs/modules/qt_lib_webchannel*.pri
|
||
|
|
%{_qt5_libdir}/cmake/Qt5WebChannel/Qt5WebChannelConfig*.cmake
|
||
|
|
%{_qt5_libdir}/pkgconfig/Qt5WebChannel.pc
|
||
|
|
|
||
|
|
%files help
|
||
|
|
%{_qt5_examplesdir}/
|
||
|
|
|
||
|
|
|
||
|
|
%changelog
|
||
|
|
* Fri Feb 14 2020 lingsheng <lingsheng@huawei.com> - 5.11.1-4
|
||
|
|
- Package init
|