File compton-conf.spec of Package compton-conf
#
# spec file for package compton-conf
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: compton-conf
Version: 0.1.0
Release: 0
Summary: Compositor Configuration
License: GPL-2.0+ and LGPL-2.1+
Group: System/GUI/LXDE-Qt
Url: http://www.lxde.org
Source: %{name}-%{version}.tar.xz
Patch0: %{name}-0.1.0-fix_desktop_file.patch
Patch1: %{name}-qt5-support.patch
BuildRequires: cmake
BuildRequires: gcc-c++
BuildRequires: pkg-config
BuildRequires: pkgconfig(Qt5DBus)
BuildRequires: pkgconfig(Qt5Widgets)
BuildRequires: pkgconfig(libconfig)
BuildRequires: pkgconfig(Qt5UiTools)
Requires: compton
Requires(pre): desktop-file-utils
Requires(post): desktop-file-utils
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
X composite manager configuration for compton
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%build
mkdir build
pushd build
cmake \
-DUSE_QT5=ON \
-DCMAKE_INSTALL_PREFIX:PATH=/usr \
..
%__make %{_smp_mflags}
popd
%install
pushd build
make DESTDIR=$RPM_BUILD_ROOT install
popd
%post
%desktop_database_post
%postun
%desktop_database_postun
%files
%defattr(-,root,root)
%doc AUTHORS COPYING
%{_bindir}/compton-conf
%{_datadir}/applications/*.desktop
%{_datadir}/compton-conf
%changelog