supergfxctl/supergfxctl.spec

93 lines
2.7 KiB
RPMSpec

%global rustflags -Clink-arg=-Wl,-z,relro,-z,now
Name: supergfxctl
Version: 5.1.2
Release: 0
Summary: Super graphics mode controller
License: MPL-2.0
URL: https://gitlab.com/asus-linux/supergfxctl
Source0: %{name}-%{version}.tar.gz
Source1: vendor-%{version}.tar.xz
Source2: cargo_config
BuildRequires: cargo
BuildRequires: cargo-packaging
BuildRequires: clang-devel
BuildRequires: pkgconfig
BuildRequires: rust
BuildRequires: rust-std-static
BuildRequires: systemd-rpm-macros
BuildRequires: pkgconfig(dbus-1)
BuildRequires: pkgconfig(libudev)
BuildRequires: pkgconfig(systemd)
Requires: systemd
Conflicts: bumblebee
Conflicts: bumblebee-status-module-nvidia-optimus-manager
Conflicts: bbswitch
Conflicts: suse-prime
Conflicts: system76-power
%description
supergfxctl is a super graphics mode controller for laptops with hybrid nvidia.
%prep
%autosetup -a1
mkdir .cargo
cp %{SOURCE2} .cargo/config
%build
%cargo_build
%install
%cargo_install
mkdir -p "%{buildroot}%{_bindir}"
install -D -m 0755 target/release/supergfxd %{buildroot}%{_bindir}/supergfxd
install -D -m 0755 target/release/supergfxctl %{buildroot}%{_bindir}/supergfxctl
install -D -m 0644 data/90-supergfxd-nvidia-pm.rules %{buildroot}%{_udevrulesdir}/90-supergfxd-nvidia-pm.rules
install -D -m 0644 data/org.supergfxctl.Daemon.conf %{buildroot}%{_sysconfdir}/dbus-1/system.d/org.supergfxctl.Daemon.conf
install -D -m 0644 data/supergfxd.service %{buildroot}%{_unitdir}/supergfxd.service
install -D -m 0644 data/supergfxd.preset %{buildroot}%{_presetdir}/99-supergfxd.preset
install -D -m 0644 LICENSE %{buildroot}%{_datadir}/licenses/%{name}/LICENSE
install -D -m 0644 README.md %{buildroot}%{_datadir}/doc/%{name}/README.md
%pre
%service_add_pre supergfxd.service
%post
%service_add_post supergfxd.service
systemctl enable supergfxd.service
%preun
%service_del_preun supergfxd.service
%postun
%service_del_postun_with_restart supergfxd.service
if [ -e %{_sysconfdir}/modprobe.d/supergfxd.conf ]
then
rm %{_sysconfdir}/modprobe.d/supergfxd.conf
fi
if [ -e %{_sysconfdir}/modprobe.d/nvidia.conf ]
then
if grep -q "# options nvidia-drm.modeset=1" %{_sysconfdir}/modprobe.d/nvidia.conf
then
echo "optional nvidia-drm.modeset=1" > %{_sysconfdir}/modprobe.d/nvidia.conf
fi
fi
%files
%license LICENSE
%{_bindir}/supergfxd
%{_bindir}/supergfxctl
%{_unitdir}/supergfxd.service
%{_presetdir}/99-supergfxd.preset
%{_udevrulesdir}/90-supergfxd-nvidia-pm.rules
%config %{_sysconfdir}/dbus-1/system.d/org.supergfxctl.Daemon.conf
%dir %{_datadir}/doc
%dir %{_datadir}/doc/%{name}
%{_datadir}/doc/%{name}/*
%changelog