]> git.pld-linux.org Git - packages/xiccd.git/blame - xiccd.spec
up to 0.3.0
[packages/xiccd.git] / xiccd.spec
CommitLineData
d8eb3689
JP
1Summary: X color profile daemon
2Name: xiccd
c5e1c0ed 3Version: 0.3.0
d8eb3689
JP
4Release: 1
5License: GPL v3+
6Group: X11/Applications
7Source0: https://github.com/agalakhov/xiccd/archive/v%{version}.tar.gz
c5e1c0ed 8# Source0-md5: 87a22a231c807566a250c3065073e737
d8eb3689
JP
9URL: https://github.com/agalakhov/xiccd
10BuildRequires: autoconf >= 2.69
11BuildRequires: automake >= 1:1.9
12BuildRequires: colord-devel >= 1.0.2
13BuildRequires: glib2-devel >= 1:2.36
14BuildRequires: pkgconfig
15BuildRequires: xorg-lib-libX11-devel
16BuildRequires: xorg-lib-libXrandr-devel >= 1.3
17Requires: colord >= 1.0.2
18Requires: glib2 >= 1:2.36
19Requires: xorg-lib-libXrandr >= 1.3
20BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22%description
23xiccd is a simple bridge between colord and X. It does the following
24tasks:
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
31It does basically the same as gnome-settings-daemon color plugin or
32colord-kde but does not depend on any particular desktop. It even
33doesn't depend on GTK so it doesn't create useless GTK3 dependency if
34the desktop environment is GTK2-based or vice versa. The primary goal
35of xiccd is providing color profile support for desktop environments
36other than Gnome and KDE (Xfce, LXDE and probably others) that do not
37support native color management yet. It is however not meant to be
38excuse of not adding native color management to the session daemons of
39them.
40
41%prep
42%setup -q
43
44%build
45%{__aclocal}
46%{__autoconf}
47%{__automake}
48%configure
49%{__make}
50
51%install
52rm -rf $RPM_BUILD_ROOT
53
54%{__make} install \
55 DESTDIR=$RPM_BUILD_ROOT
56
57%clean
58rm -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
c5e1c0ed 64/etc/xdg/autostart/xiccd.desktop
d8eb3689 65%{_mandir}/man8/xiccd.8*
This page took 0.316414 seconds and 4 git commands to generate.