contrib/powertop/Pkgfile

22 lines
593 B
Plaintext
Raw Normal View History

2015-08-03 04:32:26 +02:00
# 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
2020-06-01 13:56:51 +02:00
# Depends on: libnl ncurses
2008-11-15 20:44:47 +01:00
name=powertop
2020-07-23 22:58:23 +02:00
version=2.13
2008-11-15 20:44:47 +01:00
release=1
2020-06-01 13:56:51 +02:00
source=(https://01.org/sites/default/files/downloads/$name-$version.tar.gz)
2008-11-15 20:44:47 +01:00
2012-06-11 17:28:55 +02:00
build() {
2020-06-01 13:56:51 +02:00
cd $name-$version
2015-08-03 04:32:26 +02:00
./configure \
--prefix=/usr \
--disable-nls
2012-06-11 17:28:55 +02:00
make
make DESTDIR=$PKG install
2020-06-05 18:54:22 +02:00
[ ! -e /usr/lib/pkgconfig/bash-completion.pc ] && rm -r $PKG/usr/share/bash-completion
2008-11-15 20:44:47 +01:00
}