- update to 0.3.0: * Correct X property setting for multiple screens * Race fixes * Memory leak fixes * Add desktop files OBS-URL: https://build.opensuse.org/request/show/826931 OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/xiccd?expand=0&rev=10
69 lines
2.0 KiB
RPMSpec
69 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package xiccd
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: xiccd
|
|
Version: 0.3.0
|
|
Release: 0
|
|
Summary: X11 ICC Daemon
|
|
License: GPL-3.0-or-later
|
|
Group: System/X11/Utilities
|
|
URL: https://github.com/agalakhov/xiccd
|
|
Source: https://github.com/agalakhov/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(colord)
|
|
BuildRequires: pkgconfig(xrandr)
|
|
|
|
%description
|
|
xiccd is a bridge between colord and the X server. Its tasks are:
|
|
|
|
* to enumerate displays and register them in colord,
|
|
* to create default ICC profiles based on EDID data,
|
|
* to apply ICC profiles provided by colord,
|
|
* and to maintain user's private ICC storage directory.
|
|
|
|
It does basically the same as the gnome-settings-daemon colour plugin
|
|
or colord-kde without depending on any particular desktop nor the
|
|
GTK+ libraries.
|
|
|
|
The primary goal of xiccd is providing colour profile support for
|
|
desktop environments other than GNOME and KDE that do not support
|
|
native colour management yet, such as MATE, Xfce, LXDE, to name a
|
|
few.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
autoreconf -fi
|
|
%configure
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc ChangeLog README
|
|
%{_sysconfdir}/xdg/autostart/
|
|
%{_bindir}/%{name}
|
|
%{_mandir}/man8/%{name}.8%{?ext_man}
|
|
|
|
%changelog
|