2014-05-26 18:38:02 +08:00
|
|
|
# maintainer: Neophytos Kolokotronis <tetris4ATgmailDOTcom>
|
2010-12-16 14:50:24 +08:00
|
|
|
|
|
|
|
pkgname=upower
|
2016-02-24 14:42:55 +08:00
|
|
|
pkgver=0.99.4
|
2013-09-07 05:11:54 +08:00
|
|
|
pkgrel=1
|
2010-12-16 14:50:24 +08:00
|
|
|
pkgdesc="Abstraction for enumerating power devices, listening to device events and querying history and statistics"
|
2013-01-14 03:06:22 +08:00
|
|
|
arch=('x86_64')
|
2010-12-16 14:50:24 +08:00
|
|
|
url="http://upower.freedesktop.org"
|
|
|
|
license=('GPL')
|
2016-02-24 14:42:55 +08:00
|
|
|
depends=('systemd' 'libusb' 'libimobiledevice' 'libgudev')
|
2015-07-10 04:46:34 +08:00
|
|
|
makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'python2')
|
2014-08-04 17:38:15 +08:00
|
|
|
backup=('etc/UPower/UPower.conf')
|
2015-07-10 04:46:34 +08:00
|
|
|
source=(http://upower.freedesktop.org/releases/$pkgname-$pkgver.tar.xz)
|
2016-02-24 14:42:55 +08:00
|
|
|
sha256sums=('9ca325a6ccef505529b268ebbbd9becd0ce65a65f6ac7ee31e2e5b17648037b0')
|
2010-12-16 14:50:24 +08:00
|
|
|
|
|
|
|
build() {
|
2015-07-10 04:46:34 +08:00
|
|
|
cd $pkgname-$pkgver
|
2012-06-12 11:50:38 +08:00
|
|
|
|
2015-07-10 04:46:34 +08:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sysconfdir=/etc \
|
2014-08-04 17:38:15 +08:00
|
|
|
--localstatedir=/var \
|
|
|
|
--libexecdir=/usr/lib/$pkgname \
|
|
|
|
--disable-static
|
2010-12-16 14:50:24 +08:00
|
|
|
make
|
2011-07-13 03:59:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2015-07-10 04:46:34 +08:00
|
|
|
cd $pkgname-$pkgver
|
2012-06-12 11:50:38 +08:00
|
|
|
make DESTDIR="$pkgdir" install
|
2013-07-15 05:46:16 +08:00
|
|
|
}
|