blob: 38d99a1fc6fac4aed2ee8bef99a7867a4ce578af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
Name: damageproto
Summary: X.Org X11 Protocol damageproto
Version: 1.2.1
Release: 1
Group: Development/System
License: MIT
URL: http://www.x.org
Source0: %{name}-%{version}.tar.gz
Provides: damageproto
BuildRequires: pkgconfig
BuildRequires: pkgconfig(xorg-macros)
# some file to be intalled can be ignored when rpm generates packages
%define _unpackaged_files_terminate_build 0
%description
Description: %{summary}
%prep
%setup -q
%build
./autogen.sh
%reconfigure --disable-static \
--libdir=%{_datadir} \
--without-xmlto
# Call make instruction with smp support
make %{?jobs:-j%jobs}
%install
rm -rf %{buildroot}
%make_install
%remove_docs
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%{_includedir}/X11/extensions/*.h
%{_datadir}/pkgconfig/*.pc
|