2010-04-10 18:06:10 +02:00
|
|
|
# Template file for 'upower'
|
|
|
|
pkgname=upower
|
2014-03-27 15:41:42 +01:00
|
|
|
version=0.99.0
|
2014-07-28 15:02:40 +02:00
|
|
|
revision=3
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2013-10-08 20:53:32 +02:00
|
|
|
configure_args="--disable-static --with-backend=linux
|
|
|
|
--without-idevice --with-systemdutildir=/usr/lib/systemd
|
2012-07-09 23:24:33 +02:00
|
|
|
--with-systemdsystemunitdir=/usr/lib/systemd/system"
|
2014-01-24 00:19:06 +01:00
|
|
|
hostmakedepends="pkg-config intltool libxslt docbook-xsl"
|
2013-04-14 15:20:19 +02:00
|
|
|
makedepends="libusb-devel libgudev-devel dbus-glib-devel polkit-devel systemd-devel"
|
2014-01-01 16:10:11 +01:00
|
|
|
conf_files="/etc/UPower/UPower.conf"
|
|
|
|
make_dirs="/var/lib/upower 0755 root root"
|
2010-04-10 18:06:10 +02:00
|
|
|
short_desc="Abstraction for enumerating power devices"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-08-12 08:54:15 +02:00
|
|
|
license="GPL-2"
|
2012-07-09 23:24:33 +02:00
|
|
|
homepage="http://upower.freedesktop.org"
|
2013-01-07 14:15:48 +01:00
|
|
|
distfiles="${homepage}/releases/${pkgname}-${version}.tar.xz"
|
2014-03-27 15:41:42 +01:00
|
|
|
checksum=5f354b9949108cb21180224ef3dba33b41c9221a79f71a8f76c47f56246a39a1
|
2012-07-09 23:24:33 +02:00
|
|
|
|
2014-01-24 00:19:06 +01:00
|
|
|
# Package build options
|
|
|
|
build_options="gir"
|
|
|
|
# Disable gir for cross builds.
|
|
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
|
|
build_options_default="gir"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$build_option_gir" ]; then
|
|
|
|
configure_args+=" --enable-introspection"
|
|
|
|
hostmakedepends+=" gobject-introspection"
|
|
|
|
else
|
|
|
|
configure_args+=" --disable-introspection"
|
|
|
|
fi
|
2013-04-14 15:20:19 +02:00
|
|
|
|
2014-07-28 14:23:34 +02:00
|
|
|
libupower-glib2_package() {
|
2014-07-28 15:02:40 +02:00
|
|
|
replaces="upower>=0.99<0.99.0_2"
|
2014-07-28 14:23:34 +02:00
|
|
|
short_desc+=" - runtime library"
|
|
|
|
pkg_install() {
|
|
|
|
vmove usr/lib/*.so.*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-14 15:20:19 +02:00
|
|
|
upower-devel_package() {
|
2014-07-28 14:23:34 +02:00
|
|
|
depends="dbus-glib-devel libupower-glib2>=${version}_${revision}"
|
2013-05-25 10:10:08 +02:00
|
|
|
short_desc+=" - development files"
|
2013-04-14 15:20:19 +02:00
|
|
|
pkg_install() {
|
|
|
|
vmove usr/include
|
|
|
|
vmove usr/lib/pkgconfig
|
2014-01-24 00:19:06 +01:00
|
|
|
if [ "$build_option_gir" ]; then
|
|
|
|
vmove usr/share/gir-1.0
|
|
|
|
fi
|
2013-07-31 13:52:01 +02:00
|
|
|
vmove "usr/lib/*.so"
|
2013-04-14 15:20:19 +02:00
|
|
|
}
|
|
|
|
}
|