desktop/powertop/PKGBUILD

30 lines
766 B
Bash
Raw Normal View History

2013-12-17 00:50:31 +08:00
# Contributor: abveritas@chakra-project.org
# Maintainer: Bruce Liu <brli@user.sourceforge.net>
2010-08-06 06:24:13 +08:00
pkgname=powertop
2013-12-17 00:50:31 +08:00
pkgver=2.5
2012-05-13 02:30:27 +08:00
pkgrel=1
2010-08-06 06:24:13 +08:00
pkgdesc="Tool that finds the software that makes your laptop use more power than necessary"
2013-05-25 06:29:38 +08:00
arch=('x86_64')
2013-12-17 00:50:31 +08:00
url="https://01.org/powertop"
2010-08-06 06:24:13 +08:00
license=('GPL2')
2013-05-25 06:29:38 +08:00
depends=('gcc-libs' 'libnl' 'ncurses' 'pciutils')
categories=('utils')
2013-05-25 06:29:38 +08:00
screenshot=('https://01.org/powertop/sites/default/files/resize/users/u8/powertop20_overview-640x381.png')
2013-12-17 00:50:31 +08:00
source=("${url}/sites/default/files/downloads/${pkgname}-${pkgver}.tar.gz")
md5sums=('806bbcbd44fcea1f807c9582fc1f7d3e')
2010-08-06 06:24:13 +08:00
build() {
cd ${srcdir}/powertop-$pkgver
2012-05-13 02:30:27 +08:00
./autogen.sh
./configure --prefix=/usr
make
}
package() {
cd ${srcdir}/powertop-$pkgver
2010-08-06 06:24:13 +08:00
make DESTDIR=${pkgdir} install
}
2013-12-17 00:50:31 +08:00