forked from ports/contrib
19 lines
472 B
Plaintext
19 lines
472 B
Plaintext
# Description: Finds the software component(s) that make your laptop use more power than necessary
|
|
# URL: https://01.org/powertop/
|
|
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
|
|
# Depends on: ncurses libnl
|
|
|
|
name=powertop
|
|
version=2.6
|
|
release=1
|
|
source=(https://01.org/sites/default/files/downloads/$name/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name
|
|
./autogen.sh
|
|
./configure --prefix=/usr --disable-nls \
|
|
--mandir=/usr/man
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|