blob: ffc66f654c37026bde97c79210e311df85c83faa (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
|
%global libname xcb-xrm
Name: xcb-util-xrm
Version: 1.3
Release: 1
Summary: XCB utility functions for the X resource manager
License: MIT
URL: https://github.com/Airblader/xcb-util-xrm
Source0: %{url}/releases/download/v%{version}/%{name}-%{version}.tar.gz
BuildRequires: gcc
BuildRequires: automake
BuildRequires: autoconf
BuildRequires: libtool
BuildRequires: make
BuildRequires: pkgconfig(xorg-macros)
BuildRequires: pkgconfig(xcb-aux)
BuildRequires: pkgconfig(x11)
%description
%{summary}.
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}
%description devel
%{summary}.
%prep
%autosetup
%build
autoreconf -vfi
%configure --disable-silent-rules --disable-static
%make_build
%install
%make_install
rm -vf %{buildroot}%{_libdir}/lib%{libname}.la
%check
make %{?_smp_mflags} check
%ldconfig_scriptlets
%files
%license COPYING
%{_libdir}/lib%{libname}.so.*
%files devel
%{_includedir}/xcb/%(n=%{libname}; echo ${n//-/_}).h
%{_libdir}/lib%{libname}.so
%{_libdir}/pkgconfig/%{libname}.pc
%changelog
* Thu Sep 15 2022 lichaoran <pkwarcraft@hotmail.com> - 1.3-1
- init package
|