desktop/powertop/PKGBUILD

26 lines
728 B
Bash
Raw Normal View History

2010-08-06 06:24:13 +08:00
pkgname=powertop
2015-11-11 18:56:54 +08:00
pkgver=2.8
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')
2014-06-08 21:14:15 +08:00
source=("https://01.org/sites/default/files/downloads/powertop/${pkgname}-${pkgver}.tar.gz")
2015-11-11 18:56:54 +08:00
sha256sums=('a87b563f73106babfa3e74dcf92f252938c061e309ace20a361358bbfa579c5a')
2010-08-06 06:24:13 +08:00
build() {
2014-12-03 08:46:45 +08:00
cd ${srcdir}/${pkgname}-${pkgver}
2012-05-13 02:30:27 +08:00
./autogen.sh
./configure --prefix=/usr
make
}
package() {
2014-12-03 08:46:45 +08:00
cd ${srcdir}/${pkgname}-${pkgver}
2010-08-06 06:24:13 +08:00
make DESTDIR=${pkgdir} install
}