harbour-batterybuddy/rpm/harbour-batterybuddy.spec

119 lines
2.7 KiB
RPMSpec
Raw Permalink Normal View History

2019-01-06 00:48:29 +03:00
Name: harbour-batterybuddy
# >> macros
# << macros
%{!?qtc_qmake:%define qtc_qmake %qmake}
%{!?qtc_qmake5:%define qtc_qmake5 %qmake5}
%{!?qtc_make:%define qtc_make make}
%{?qtc_builddir:%define _builddir %qtc_builddir}
2020-03-28 11:30:43 +03:00
2023-03-04 16:25:20 +03:00
# Keep this in sync with .pro files
2020-03-28 11:30:43 +03:00
2019-01-06 00:48:29 +03:00
Summary: Battery Buddy
2023-03-05 12:47:29 +03:00
Version: 4.2.5
2022-08-28 01:03:14 +03:00
Release: 1
2019-01-06 00:48:29 +03:00
Group: Qt/Qt
License: GPLv3
2019-01-06 00:48:29 +03:00
URL: http://example.org/
Source0: %{name}-%{version}.tar.bz2
Requires: sailfishsilica-qt5 >= 0.10.9
Requires: libkeepalive
2023-03-04 15:00:46 +03:00
Requires: pkgconfig(nemonotifications-qt5)
Requires: sailfish-version >= 4.3
2019-01-06 00:48:29 +03:00
BuildRequires: pkgconfig(sailfishapp) >= 1.0.2
BuildRequires: pkgconfig(nemonotifications-qt5)
2019-01-06 00:48:29 +03:00
BuildRequires: pkgconfig(Qt5Core)
BuildRequires: pkgconfig(Qt5Qml)
BuildRequires: pkgconfig(Qt5Quick)
BuildRequires: desktop-file-utils
BuildRequires: libkeepalive-devel
2019-01-06 00:48:29 +03:00
%description
Prolong your battery life.
%prep
%setup -q -n %{name}-%{version}
# >> setup
# << setup
%build
# >> build pre
# << build pre
2023-03-04 16:25:20 +03:00
%qtc_qmake5
2019-01-06 00:48:29 +03:00
%qtc_make %{?_smp_mflags}
# >> build post
# << build post
%install
rm -rf %{buildroot}
# >> install pre
# << install pre
%qmake5_install
# >> install post
# << install post
2022-03-20 20:29:28 +03:00
desktop-file-install --delete-original \
--dir %{buildroot}%{_datadir}/applications \
2019-01-06 00:48:29 +03:00
%{buildroot}%{_datadir}/applications/*.desktop
2022-03-20 20:29:28 +03:00
mkdir -p %{buildroot}%{_unitdir}
mkdir -p %{buildroot}%{_userunitdir}
mv %{buildroot}%{_datadir}/%{name}/service/%{name}-oneshot.service %{buildroot}%{_unitdir}/
mv %{buildroot}%{_datadir}/%{name}/service/%{name}.service %{buildroot}%{_userunitdir}/
2019-01-06 00:48:29 +03:00
%files
%defattr(-,root,root,-)
2021-11-24 22:47:42 +03:00
%{_bindir}/*
2022-03-19 23:17:52 +03:00
%defattr(0644,root,root,-)
2019-01-06 00:48:29 +03:00
%{_datadir}/%{name}
%{_datadir}/applications/%{name}.desktop
%{_datadir}/icons/hicolor/*/apps/%{name}.png
2022-03-20 20:29:28 +03:00
%{_userunitdir}/%{name}.service
%{_unitdir}/%{name}-oneshot.service
2019-01-06 00:48:29 +03:00
# >> files
# << files
2020-03-23 05:04:47 +03:00
%posttrans
# Remove old service (quietly)
systemctl stop %{name}.service &>/dev/null
systemctl disable %{name}.service &>/dev/null
rm -f %{_unitdir}/%{name}.service
# Install/update permission daemon (root)
2020-12-27 17:18:22 +03:00
systemctl daemon-reload
systemctl enable %{name}-oneshot.service
systemctl stop %{name}-oneshot.service
systemctl start %{name}-oneshot.service
2020-12-27 01:45:40 +03:00
# Install/update background daemon (default user)
systemctl-user daemon-reload
systemctl-user enable %{name}.service
systemctl-user stop %{name}.service
systemctl-user start %{name}.service
exit 0
%postun
# Run on uninstall, not on upgrade
if [ $1 -eq 0 ]; then
systemctl-user stop %{name}.service
systemctl-user disable %{name}.service
systemctl-user daemon-reload
systemctl stop %{name}-oneshot.service
systemctl disable %{name}-oneshot.service
systemctl daemon-reload
2022-03-20 20:29:28 +03:00
systemctl-user reset-failed
systemctl reset-failed
fi
exit 0