]> git.pld-linux.org Git - SPECS.git/blob - xiccd.spec
SPECS updated Wed 28 Jul 14:48:01 CEST 2021
[SPECS.git] / xiccd.spec
1 Summary:        X color profile daemon
2 Name:           xiccd
3 Version:        0.3.0
4 Release:        1
5 License:        GPL v3+
6 Group:          X11/Applications
7 Source0:        https://github.com/agalakhov/xiccd/archive/v%{version}.tar.gz
8 # Source0-md5:  87a22a231c807566a250c3065073e737
9 URL:            https://github.com/agalakhov/xiccd
10 BuildRequires:  autoconf >= 2.69
11 BuildRequires:  automake >= 1:1.9
12 BuildRequires:  colord-devel >= 1.0.2
13 BuildRequires:  glib2-devel >= 1:2.36
14 BuildRequires:  pkgconfig
15 BuildRequires:  xorg-lib-libX11-devel
16 BuildRequires:  xorg-lib-libXrandr-devel >= 1.3
17 Requires:       colord >= 1.0.2
18 Requires:       glib2 >= 1:2.36
19 Requires:       xorg-lib-libXrandr >= 1.3
20 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22 %description
23 xiccd is a simple bridge between colord and X. It does the following
24 tasks:
25
26  * Enumerates displays and register them in colord;
27  * Creates default ICC profiles based on EDID data;
28  * Applies ICC profiles provided by colord;
29  * Maintains user's private ICC storage directory.
30
31 It does basically the same as gnome-settings-daemon color plugin or
32 colord-kde but does not depend on any particular desktop. It even
33 doesn't depend on GTK so it doesn't create useless GTK3 dependency if
34 the desktop environment is GTK2-based or vice versa. The primary goal
35 of xiccd is providing color profile support for desktop environments
36 other than Gnome and KDE (Xfce, LXDE and probably others) that do not
37 support native color management yet. It is however not meant to be
38 excuse of not adding native color management to the session daemons of
39 them.
40
41 %prep
42 %setup -q
43
44 %build
45 %{__aclocal}
46 %{__autoconf}
47 %{__automake}
48 %configure
49 %{__make}
50
51 %install
52 rm -rf $RPM_BUILD_ROOT
53
54 %{__make} install \
55         DESTDIR=$RPM_BUILD_ROOT
56
57 %clean
58 rm -rf $RPM_BUILD_ROOT
59
60 %files
61 %defattr(644,root,root,755)
62 %doc AUTHORS ChangeLog NEWS README
63 %attr(755,root,root) %{_bindir}/xiccd
64 /etc/xdg/autostart/xiccd.desktop
65 %{_mandir}/man8/xiccd.8*
This page took 7050.302609 seconds and 3 git commands to generate.