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