package created using the webbuild interface [release 0.9-1mamba;Sun Nov 27 2016]

This commit is contained in:
Ercole 'ercolinux' Carpanetto 2024-01-05 18:34:15 +01:00
parent 52b3df490d
commit 6e4dd9dab7
2 changed files with 71 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# tlp # tlp
TLP brings you the benefits of advanced power management for Linux without the need to understand every technical detail. TLP comes with a default configuration already optimized for battery life, so you may just install and forget it. Nevertheless TLP is highly customizable to fulfil your specific requirements.

69
tlp.spec Normal file
View File

@ -0,0 +1,69 @@
Name: tlp
Version: 0.9
Release: 1mamba
Summary: Command line advanced power management
Group: System/Management
Vendor: openmamba
Distribution: openmamba
Packager: Ercole 'ercolinux' Carpanetto <ercole69@gmail.com>
URL: http://linrunner.de/en/tlp/docs/tlp-linux-advanced-power-management.html
## GITSOURCE https://github.com/linrunner/TLP.git master
Source: https://github.com/linrunner/TLP.git/master/TLP-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
## note: run 'autospec -u -a6 tlp' to get the list of build requirements.
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
TLP brings you the benefits of advanced power management for Linux without the need to understand every technical detail. TLP comes with a default configuration already optimized for battery life, so you may just install and forget it. Nevertheless TLP is highly customizable to fulfil your specific requirements.
%debug_package
%prep
%setup -q -n TLP-%{version}
%build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
mkdir -p %{buildroot}/%{_libdir}/udev/rules.d/
mv %{buildroot}/lib/udev/rules.d/*.rules %{buildroot}/%{_libdir}/udev/rules.d/
mv %{buildroot}/lib/udev/tlp-* %{buildroot}/%{_libdir}/udev/
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_sysconfdir}/NetworkManager/dispatcher.d/99tlp-rdw-nm
%{_sysconfdir}/default/tlp
%{_sysconfdir}/init.d/tlp
%{_libdir}/udev/rules.d/*.rules
%{_libdir}/udev/tlp-*
%{_bindir}/bluetooth
%{_bindir}/run-on-ac
%{_bindir}/run-on-bat
%{_bindir}/tlp-pcilist
%{_bindir}/tlp-stat
%{_bindir}/tlp-usblist
%{_bindir}/wifi
%{_bindir}/wwan
%{_prefix}/lib/pm-utils/sleep.d/49tlp
%{_sbindir}/tlp
%{_datadir}/bash-completion/completions/bluetooth
%{_datadir}/bash-completion/completions/tlp
%{_datadir}/bash-completion/completions/tlp-stat
%{_datadir}/bash-completion/completions/wifi
%{_datadir}/bash-completion/completions/wwan
%{_datadir}/tlp-pm/tlp-functions
%{_datadir}/tlp-pm/tlp-nop
%{_datadir}/tlp-pm/tlp-rf-func
%{_datadir}/tlp-pm/tpacpi-bat
%doc AUTHORS COPYING LICENSE
%changelog
* Sun Nov 27 2016 Ercole 'ercolinux' Carpanetto <ercole69@gmail.com> 0.9-1mamba
- package created using the webbuild interface