mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 17:57:13 +08:00
30 lines
798 B
Bash
30 lines
798 B
Bash
pkgname=upower
|
|
pkgver=0.99.4
|
|
pkgrel=3
|
|
pkgdesc="Abstraction for enumerating power devices, listening to device events and querying history and statistics"
|
|
arch=('x86_64')
|
|
url="http://upower.freedesktop.org"
|
|
license=('GPL')
|
|
depends=('systemd' 'libusb' 'libimobiledevice' 'libgudev')
|
|
makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'python2')
|
|
backup=('etc/UPower/UPower.conf')
|
|
source=(http://upower.freedesktop.org/releases/$pkgname-$pkgver.tar.xz)
|
|
sha256sums=('9ca325a6ccef505529b268ebbbd9becd0ce65a65f6ac7ee31e2e5b17648037b0')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--localstatedir=/var \
|
|
--libexecdir=/usr/lib/$pkgname \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|