]> git.pld-linux.org Git - packages/xorg-app-xset.git/blob - xorg-app-xset.spec
- updated to 1.2.5
[packages/xorg-app-xset.git] / xorg-app-xset.spec
1 #
2 # Conditional build:
3 %bcond_with     xf86misc        # XF86-Misc extensions support (xserver < 1.6)
4
5 Summary:        xset application - user preference utility for X
6 Summary(pl.UTF-8):      Aplikacja xset - narzędzie do ustawień użytkownika dla X
7 Name:           xorg-app-xset
8 Version:        1.2.5
9 Release:        1
10 License:        MIT
11 Group:          X11/Applications
12 Source0:        https://xorg.freedesktop.org/releases/individual/app/xset-%{version}.tar.xz
13 # Source0-md5:  18ff5cdff59015722431d568a5c0bad2
14 URL:            https://xorg.freedesktop.org/
15 BuildRequires:  autoconf >= 2.60
16 BuildRequires:  automake
17 BuildRequires:  pkgconfig >= 1:0.19
18 BuildRequires:  tar >= 1:1.22
19 BuildRequires:  xorg-lib-libX11-devel
20 BuildRequires:  xorg-lib-libXext-devel
21 # just xmuu
22 BuildRequires:  xorg-lib-libXmu-devel
23 %{?with_xf86misc:BuildRequires: xorg-lib-libXxf86misc-devel}
24 BuildRequires:  xorg-lib-libXfontcache-devel
25 BuildRequires:  xorg-proto-xproto-devel >= 7.0.17
26 BuildRequires:  xorg-util-util-macros >= 1.8
27 BuildRequires:  xz
28 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
29
30 %description
31 xset program is used to set various user preference options of the
32 display.
33
34 %description -l pl.UTF-8
35 Program xset służy do ustawiania różnych opcji ekranu przez
36 użytkownika.
37
38 %prep
39 %setup -q -n xset-%{version}
40
41 %build
42 %{__aclocal}
43 %{__autoconf}
44 %{__autoheader}
45 %{__automake}
46 %configure \
47         %{?with_xf86misc:--with-xf86misc}
48
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 COPYING ChangeLog README.md
63 %attr(755,root,root) %{_bindir}/xset
64 %{_mandir}/man1/xset.1*
This page took 0.062668 seconds and 3 git commands to generate.