diff options
Diffstat (limited to 'extra/acpi/PKGBUILD')
-rw-r--r-- | extra/acpi/PKGBUILD | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/extra/acpi/PKGBUILD b/extra/acpi/PKGBUILD new file mode 100644 index 000000000..10d25d391 --- /dev/null +++ b/extra/acpi/PKGBUILD @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 107523 2011-01-26 15:33:37Z thomas $ +# Contributor: Judd Vinet <jvinet@zeroflux.org> +# Maintainer: Thayer Williams <thayer@archlinux.org> + +pkgname=acpi +pkgver=1.5 +pkgrel=1 +pkgdesc="Linux ACPI client providing battery, AC power, and thermal readings" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/acpiclient" +depends=('glibc') +source=(http://downloads.sourceforge.net/acpiclient/$pkgname-$pkgver.tar.gz) +license=('GPL2') +sha256sums=('57ff91cb5bef9e6d158c5b231a553a3a77c9ccfd0e4fad42958d1e61241060dd') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} |