mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 13:44:37 +08:00
55 lines
2.3 KiB
Bash
55 lines
2.3 KiB
Bash
pkgname=laptop-mode-tools
|
|
pkgver=1.68.1
|
|
pkgrel=1
|
|
pkgdesc="Laptop mode is a kernel mode that allows you to extend the battery life of your laptop"
|
|
arch=('x86_64')
|
|
url="http://www.samwel.tk/laptop_mode/"
|
|
license=('GPL')
|
|
depends=('bash')
|
|
makedepends=('python2-pyqt4')
|
|
optdepends=('acpid: for ACPI support'
|
|
'hdparm: hard disk power management'
|
|
'sdparm: SCSI disk power management'
|
|
'ethtool: ethernet support'
|
|
'wireless_tools: WiFi support'
|
|
'python2-pyqt4: for GUI support')
|
|
backup=(etc/laptop-mode/conf.d/ac97-powersave.conf
|
|
etc/laptop-mode/conf.d/auto-hibernate.conf
|
|
etc/laptop-mode/conf.d/battery-level-polling.conf
|
|
etc/laptop-mode/conf.d/bluetooth.conf
|
|
etc/laptop-mode/conf.d/configuration-file-control.conf
|
|
etc/laptop-mode/conf.d/cpufreq.conf
|
|
etc/laptop-mode/conf.d/dpms-standby.conf
|
|
etc/laptop-mode/conf.d/eee-superhe.conf
|
|
etc/laptop-mode/conf.d/ethernet.conf
|
|
etc/laptop-mode/conf.d/exec-commands.conf
|
|
etc/laptop-mode/conf.d/hal-polling.conf
|
|
etc/laptop-mode/conf.d/intel-hda-powersave.conf
|
|
etc/laptop-mode/conf.d/intel-sata-powermgmt.conf
|
|
etc/laptop-mode/conf.d/lcd-brightness.conf
|
|
etc/laptop-mode/conf.d/nmi-watchdog.conf
|
|
etc/laptop-mode/conf.d/pcie-aspm.conf
|
|
etc/laptop-mode/conf.d/runtime-pm.conf
|
|
etc/laptop-mode/conf.d/sched-mc-power-savings.conf
|
|
etc/laptop-mode/conf.d/sched-smt-power-savings.conf
|
|
etc/laptop-mode/conf.d/start-stop-programs.conf
|
|
etc/laptop-mode/conf.d/terminal-blanking.conf
|
|
etc/laptop-mode/conf.d/video-out.conf
|
|
etc/laptop-mode/conf.d/wireless-ipw-power.conf
|
|
etc/laptop-mode/conf.d/wireless-iwl-power.conf
|
|
etc/laptop-mode/conf.d/wireless-power.conf
|
|
etc/laptop-mode/laptop-mode.conf
|
|
etc/laptop-mode/lm-profiler.conf)
|
|
install=laptop-mode.install
|
|
source=("http://www.samwel.tk/laptop_mode/tools/downloads/${pkgname}_${pkgver}.tar.gz")
|
|
md5sums=('0b75e5be95daff3c954e61e2168a15d5')
|
|
|
|
package() {
|
|
cd ${pkgname}_${pkgver}
|
|
make DESTDIR="${pkgdir}" INIT_D=none MAN_D=/usr/share/man LIB_D=/usr/lib install
|
|
|
|
cd ${srcdir}/${pkgname}_${pkgver}/gui/
|
|
sed -i '1s|^|#!/usr/bin/python \n|' LMT.py
|
|
install -Dm755 LMT.py ${pkgdir}/usr/sbin/${pkgname}-gui
|
|
}
|