package created using the webbuild interface [release 1.0.0-1mamba;Tue Aug 25 2020]

This commit is contained in:
Silvan Calarco 2024-01-05 19:56:43 +01:00
parent fbb17c7347
commit 21a221e349
2 changed files with 53 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# xsettingsd
A daemon that implements the XSETTINGS specification.

51
xsettingsd.spec Normal file
View File

@ -0,0 +1,51 @@
Name: xsettingsd
Version: 1.0.0
Release: 1mamba
Summary: A daemon that implements the XSETTINGS specification
Group: Graphical Desktop/Applications/Configuration
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/derat/xsettingsd.git
Source: https://github.com/derat/xsettingsd.git/v%{version}/xsettingsd-%{version}.tar.bz2
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ldconfig
BuildRequires: libX11-devel
BuildRequires: libgcc
BuildRequires: libstdc++6-devel
## AUTOBUILDREQ-END
BuildRequires: scons
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
A daemon that implements the XSETTINGS specification.
%debug_package
%prep
%setup -q
%build
scons xsettingsd dump_xsettings
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
install -D -m755 xsettingsd dump_xsettings -t %{buildroot}%{_bindir}
install -Dm644 xsettingsd.1 dump_xsettings.1 -t %{buildroot}%{_mandir}/man1/
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_bindir}/dump_xsettings
%{_bindir}/xsettingsd
%{_mandir}/man1/dump_xsettings.1*
%{_mandir}/man1/xsettingsd.1*
%doc COPYING
%changelog
* Tue Aug 25 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-1mamba
- package created using the webbuild interface