4974f9c886
patches OBS-URL: https://build.opensuse.org/package/show/utilities/brightnessctl?expand=0&rev=10
84 lines
2.1 KiB
RPMSpec
84 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package brightnessctl
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
# Copyright (c) 2019 R Tyler Croy <rtyler@brokenco.de>
|
|
# Copyright (c) 2016 Fabio Alessandro Locati <fale@fedoraproject.org>
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
# use systemd-logind instead of udev for systemd >= 243
|
|
%if 0%{?sle_version} >= 150200 || 0%{?suse_version} > 1500
|
|
%global use_logind 1
|
|
%else
|
|
%global use_logind 0
|
|
%endif
|
|
Name: brightnessctl
|
|
Version: 0.5.1
|
|
Release: 0
|
|
Summary: Tool to read and control device brightness
|
|
License: MIT
|
|
URL: https://github.com/Hummer12007/%{name}
|
|
Source: %{URL}/archive/%{version}.tar.gz
|
|
PreReq: permissions
|
|
BuildRequires: gcc
|
|
BuildRequires: make
|
|
%if %{use_logind}
|
|
BuildRequires: pkgconfig(libsystemd)
|
|
Requires: systemd >= 243
|
|
%else
|
|
BuildRequires: systemd-rpm-macros
|
|
%endif
|
|
|
|
%description
|
|
A utility to read and control the display brightness.
|
|
|
|
%prep
|
|
%autosetup -N
|
|
|
|
%build
|
|
%if %{use_logind}
|
|
export ENABLE_SYSTEMD=1
|
|
%{set_build_flags}
|
|
%else
|
|
export MODE="4755"
|
|
export CFLAGS="%{optflags}"
|
|
%endif
|
|
%make_build
|
|
|
|
%install
|
|
%if %{use_logind}
|
|
%make_install INSTALL_UDEV_RULES=0 ENABLE_SYSTEMD=1 PREFIX=%{_prefix}
|
|
%else
|
|
%make_install UDEVDIR=%{_udevrulesdir}
|
|
%endif
|
|
|
|
%post
|
|
%if 0%{?set_permissions:1}
|
|
%set_permissions %name
|
|
%else
|
|
%run_permissions
|
|
%endif
|
|
|
|
%files
|
|
%doc README.md
|
|
%license LICENSE
|
|
%{_bindir}/%{name}
|
|
%if ! %{use_logind}
|
|
%{_udevrulesdir}/90-brightnessctl.rules
|
|
%endif
|
|
%{_mandir}/man1/brightnessctl.1%{?ext_man}
|
|
|
|
%changelog
|