summaryrefslogtreecommitdiffstats
path: root/rules/upower.make
diff options
context:
space:
mode:
authorLadislav Michl <ladis@linux-mips.org>2018-03-01 16:08:33 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-03-01 18:39:53 +0100
commit7db90d2d5499cb7ec4f7af7c7315392854ca7fc8 (patch)
tree846707e77fe39b9ab3f54b7fbdd55069e186c183 /rules/upower.make
parent36b73a554c43bd63eb90657868216d04e06c37bf (diff)
downloadptxdist-7db90d2d5499cb7ec4f7af7c7315392854ca7fc8.tar.gz
ptxdist-7db90d2d5499cb7ec4f7af7c7315392854ca7fc8.tar.xz
upower: new package
Signed-off-by: Ladislav Michl <ladis@linux-mips.org> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/upower.make')
-rw-r--r--rules/upower.make101
1 files changed, 101 insertions, 0 deletions
diff --git a/rules/upower.make b/rules/upower.make
new file mode 100644
index 000000000..4493eaa89
--- /dev/null
+++ b/rules/upower.make
@@ -0,0 +1,101 @@
+# -*-makefile-*-
+#
+# Copyright (C) 2018 by Ladislav Michl <ladis@linux-mips.org>
+#
+# See CREDITS for details about who has contributed to this project.
+#
+# For further information about the PTXdist project and license conditions
+# see the README file.
+#
+
+#
+# We provide this package
+#
+PACKAGES-$(PTXCONF_UPOWER) += upower
+
+#
+# Paths and names
+#
+UPOWER_VERSION := 0.99.7
+UPOWER_MD5 := 236bb439d9ff1151450b3d8582399532
+UPOWER := upower-$(UPOWER_VERSION)
+UPOWER_SUFFIX := tar.xz
+UPOWER_URL := https://upower.freedesktop.org/releases/$(UPOWER).$(UPOWER_SUFFIX)
+UPOWER_SOURCE := $(SRCDIR)/$(UPOWER).$(UPOWER_SUFFIX)
+UPOWER_DIR := $(BUILDDIR)/$(UPOWER)
+UPOWER_LICENSE := GPL-2.0+
+UPOWER_LICENSE_FILES := file://COPYING;md5=0de8fbf1d97a140d1d93b9f14dcfbf08
+
+# ----------------------------------------------------------------------------
+# Prepare
+# ----------------------------------------------------------------------------
+
+#
+# autoconf
+#
+UPOWER_CONF_TOOL := autoconf
+UPOWER_CONF_OPT = \
+ $(CROSS_AUTOCONF_USR) \
+ --$(call ptx/endis, PTXCONF_UPOWER_INTROSPECTION)-introspection \
+ $(GLOBAL_LARGE_FILE_OPTION) \
+ --enable-shared \
+ --disable-static \
+ --enable-fast-install \
+ --disable-libtool-lock \
+ --disable-deprecated \
+ --disable-man-pages \
+ --disable-gtk-doc \
+ --disable-gtk-doc-html \
+ --disable-gtk-doc-pdf \
+ --disable-tests \
+ --disable-nls \
+ --disable-rpath \
+ --with-udevrulesdir=/usr/lib/udev/rules.d \
+ --with-historydir=/var/lib/upower \
+ --with-systemdutildir=/usr/lib/systemd/scripts \
+ --with-systemdsystemunitdir=/usr/lib/systemd/system \
+ --with-backend=linux \
+ --without-idevice
+
+# ----------------------------------------------------------------------------
+# Target-Install
+# ----------------------------------------------------------------------------
+
+$(STATEDIR)/upower.targetinstall:
+ @$(call targetinfo)
+
+ @$(call install_init, upower)
+ @$(call install_fixup, upower,PRIORITY,optional)
+ @$(call install_fixup, upower,SECTION,base)
+ @$(call install_fixup, upower,AUTHOR,"Ladislav Michl <ladis@linux-mips.org>")
+ @$(call install_fixup, upower,DESCRIPTION, "upower")
+
+ @$(call install_lib, upower, 0, 0, 0644, libupower-glib)
+
+ @$(call install_copy, upower, 0, 0, 0755, -, /usr/bin/upower)
+ @$(call install_copy, upower, 0, 0, 0755, -, /usr/libexec/upowerd)
+
+ @$(call install_alternative, upower, 0, 0, 0644, \
+ /etc/UPower/UPower.conf)
+ @$(call install_alternative, upower, 0, 0, 0644, \
+ /etc/dbus-1/system.d/org.freedesktop.UPower.conf)
+ @$(call install_alternative, upower, 0, 0, 0644, \
+ /usr/share/dbus-1/system-services/org.freedesktop.UPower.service)
+ @$(call install_tree, upower, 0, 0, -, /usr/lib/udev/rules.d)
+
+ifdef PTXCONF_UPOWER_SYSTEMD_UNIT
+ @$(call install_alternative, upower, 0, 0, 0644, \
+ /usr/lib/systemd/system/upower.service)
+endif
+ifdef PTXCONF_UPOWER_INTROSPECTION
+ @$(call install_copy, upower, 0, 0, 0644, -, \
+ /usr/lib/girepository-1.0/UPowerGlib-1.0.typelib)
+endif
+
+ @$(call install_copy, upower, 0, 0, 0755, /var/lib/upower)
+
+ @$(call install_finish, upower)
+
+ @$(call touch)
+
+# vim: syntax=make