parent
8d8257e102
commit
b430dbec5b
@ -0,0 +1 @@
|
||||
/bluez-qt-5.2.95.tar.xz
|
@ -0,0 +1,8 @@
|
||||
# Get access to /dev/rfkill for users
|
||||
# See https://bugzilla.redhat.com/show_bug.cgi?id=514798
|
||||
#
|
||||
# Simplified by Kay Sievers
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=733326
|
||||
|
||||
KERNEL=="rfkill", SUBSYSTEM=="misc", TAG+="uaccess"
|
||||
|
@ -0,0 +1,88 @@
|
||||
%global framework bluez-qt
|
||||
%global plasma_version 5.2.95
|
||||
|
||||
Name: kf5-%{framework}
|
||||
Summary: A Qt wrapper for Bluez
|
||||
Version: 5.2.95
|
||||
Release: 2%{?dist}
|
||||
|
||||
License: LGPLv2+
|
||||
URL: https://projects.kde.org/projects/kde/workspace/bluez-qt
|
||||
|
||||
%global revision %(echo %{version} | cut -d. -f3)
|
||||
%if %{revision} >= 50
|
||||
%global stable unstable
|
||||
%else
|
||||
%global stable stable
|
||||
%endif
|
||||
Source0: http://download.kde.org/%{stable}/plasma/%{plasma_version}/%{framework}-%{version}.tar.xz
|
||||
|
||||
Source1: 61-kde-bluetooth-rfkill.rules
|
||||
|
||||
BuildRequires: extra-cmake-modules
|
||||
BuildRequires: kf5-rpm-macros
|
||||
BuildRequires: qt5-qtbase-devel
|
||||
BuildRequires: qt5-qtdeclarative-devel
|
||||
|
||||
# For %%{_udevrulesdir}
|
||||
BuildRequires: systemd
|
||||
|
||||
Requires: kf5-filesystem
|
||||
Requires: bluez >= 5
|
||||
|
||||
# 5.2 was the last release of libbluedevil
|
||||
Obsoletes: libbluedevil <= 5.2
|
||||
|
||||
%description
|
||||
BluezQt is Qt-based library written handle all Bluetooth functionality.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
Requires: qt5-qtbase-devel
|
||||
%description devel
|
||||
Development files for %{name}.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n %{framework}-%{version}
|
||||
|
||||
|
||||
%build
|
||||
mkdir -p %{_target_platform}
|
||||
pushd %{_target_platform}
|
||||
%{cmake_kf5} ..
|
||||
popd
|
||||
|
||||
make %{?_smp_mflags} -C %{_target_platform}
|
||||
|
||||
|
||||
%install
|
||||
make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
|
||||
|
||||
# Install udev rules
|
||||
install -D %{SOURCE1} %{buildroot}/%{_udevrulesdir}/61-kde-bluetooth-rfkill.rules
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%doc COPYING.LIB README.md
|
||||
%{_libdir}/libKF5BluezQt.so.*
|
||||
%{_kf5_qmldir}/org/kde/bluezqt
|
||||
%{_udevrulesdir}/61-kde-bluetooth-rfkill.rules
|
||||
|
||||
%files devel
|
||||
%{_kf5_includedir}/BluezQt
|
||||
%{_kf5_includedir}/bluezqt_version.h
|
||||
%{_kf5_libdir}/libKF5BluezQt.so
|
||||
%{_kf5_libdir}/cmake/KF5BluezQt
|
||||
%{_qt5_archdatadir}/mkspecs/modules/qt_BluezQt.pri
|
||||
|
||||
%changelog
|
||||
* Wed Apr 22 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.95-2
|
||||
- install %%doc
|
||||
- Obsoletes: libbluedevil
|
||||
|
||||
* Wed Apr 22 2015 Daniel Vrátil <dvratil@redhat.com> - 5.2.95-1
|
||||
- Plasma 5.2.95
|
Loading…
Reference in new issue