Initial import (#1934392)

This commit is contained in:
Peter Hutterer 2021-03-04 08:48:28 +10:00
parent f4ffd3d75b
commit d6ac0eecf3
3 changed files with 45 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/xrdb-*.tar.bz2

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (xrdb-1.1.1.tar.bz2) = 20c342004ef911fc4d3ef4ac3ac15d1c30bb946b8156f3a6916c242e470be0cb63261563462fd1e2e07b1a7cc527b8cacf5f913e31b02196629a95043cf8d13f

43
xrdb.spec Normal file
View File

@ -0,0 +1,43 @@
Name: xrdb
Version: 1.1.1
Release: 1%{?dist}
Summary: X server resource database utility
License: MIT
URL: https://www.x.org
Source0: https://www.x.org/pub/individual/app/%{name}-%{version}.tar.bz2
BuildRequires: automake libtool
BuildRequires: gcc make
BuildRequires: pkgconfig(x11)
BuildRequires: pkgconfig(xmu)
BuildRequires: pkgconfig(xorg-macros) >= 1.8
Obsoletes: xorg-x11-server-utils <= 7.7-39
%description
xrdb is used to get or set the contents of the RESOURCE_MANAGER property on
the root window of screen 0, or the SCREEN_RESOURCES property on the
root window of any or all screens, or everything combined.
%prep
%autosetup
%build
autoreconf -v --install
%configure --disable-silent-rules
%make_build
%install
%make_install
%files
%license COPYING
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1*
%changelog
* Wed Mar 03 2021 Peter Hutterer <peter.hutterer@redhat.com> 1.1.1-1
- Split xrdb out from xorg-x11-server-utils into a separate package
(#1934392)