mirror of
https://abf.rosa.ru/djam/xsettingsd.git
synced 2025-02-23 16:52:57 +00:00
1.0.2
This commit is contained in:
parent
cdcd61d1a3
commit
b2c24c773c
2 changed files with 24 additions and 11 deletions
3
.abf.yml
3
.abf.yml
|
@ -1,2 +1,3 @@
|
||||||
sources:
|
sources:
|
||||||
"v1.0.2.tar.gz": 4322aac381c8ca8de14771d15ea5c9052d6050be
|
v1.0.2.tar.gz: 4322aac381c8ca8de14771d15ea5c9052d6050be
|
||||||
|
xsettingsd-1.0.2.tar.gz: 682d0c968c45cbef80b6d0f896d9e347dc0b7c3a
|
||||||
|
|
|
@ -1,14 +1,21 @@
|
||||||
Summary: Provides settings to X11 applications via the XSETTINGS specification
|
%global optflags %(echo %{optflags} | sed -e 's/-ffat-lto-objects//g' -e 's/-fvar-tracking-assignments//g' -e 's/-Wa,//g' -e 's/--compress-debug-sections//g' -e 's/-fno-devirtualize//g' )
|
||||||
Name: xsettingsd
|
%define _llvm_ver 16
|
||||||
Version: 1.0.2
|
%define _optdir /opt
|
||||||
Release: 1
|
%define _llvm_path %{_optdir}/llvm%{_llvm_ver}
|
||||||
Group: Graphical desktop/Other
|
|
||||||
License: BSD
|
Summary: Provides settings to X11 applications via the XSETTINGS specification
|
||||||
Url: https://github.com/derat/xsettingsd
|
Name: xsettingsd
|
||||||
Source0: https://github.com/derat/xsettingsd/archive/v%{version}.tar.gz
|
Version: 1.0.2
|
||||||
|
Release: 1
|
||||||
|
Group: Graphical desktop/Other
|
||||||
|
License: BSD
|
||||||
|
URL: https://github.com/derat/xsettingsd
|
||||||
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||||
BuildRequires: cmake
|
BuildRequires: cmake
|
||||||
BuildRequires: scons
|
BuildRequires: scons
|
||||||
|
BuildRequires: llvm%{_llvm_ver}
|
||||||
BuildRequires: pkgconfig(x11)
|
BuildRequires: pkgconfig(x11)
|
||||||
|
BuildRequires: python38-devel
|
||||||
|
|
||||||
%description
|
%description
|
||||||
xsettingsd is a daemon that implements the XSETTINGS specification.
|
xsettingsd is a daemon that implements the XSETTINGS specification.
|
||||||
|
@ -19,9 +26,14 @@ GTK+ applications and want to configure things such as themes, font
|
||||||
antialiasing/hinting, and UI sound effects.
|
antialiasing/hinting, and UI sound effects.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -p1
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
|
export CC=%{_llvm_path}/bin/clang
|
||||||
|
export CXX=%{_llvm_path}/bin/clang++
|
||||||
|
export AR=%{_llvm_path}/bin/llvm-ar
|
||||||
|
export NM=%{_llvm_path}/bin/llvm-nm
|
||||||
|
|
||||||
%cmake
|
%cmake
|
||||||
%make
|
%make
|
||||||
|
|
||||||
|
@ -29,7 +41,7 @@ antialiasing/hinting, and UI sound effects.
|
||||||
%makeinstall_std -C build
|
%makeinstall_std -C build
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%doc COPYING
|
%doc README.md COPYING
|
||||||
%{_bindir}/%{name}
|
%{_bindir}/%{name}
|
||||||
%{_bindir}/dump_xsettings
|
%{_bindir}/dump_xsettings
|
||||||
%{_mandir}/man1/%{name}.1.*
|
%{_mandir}/man1/%{name}.1.*
|
||||||
|
|
Loading…
Add table
Reference in a new issue