summaryrefslogtreecommitdiff
path: root/package/upower/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-01-10 17:37:30 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-01-10 17:37:30 +0100
commitb4d204f9fdb09a3655ae9a90ef262e253d6e59d7 (patch)
tree9195e74b2a7ff4f0403864f235a74ecb23ddac45 /package/upower/Makefile
parent79963aad5902c51d47fbc779c1280060872f1a71 (diff)
add upower, polkit and dependencies
Diffstat (limited to 'package/upower/Makefile')
-rw-r--r--package/upower/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/package/upower/Makefile b/package/upower/Makefile
new file mode 100644
index 000000000..ea448a693
--- /dev/null
+++ b/package/upower/Makefile
@@ -0,0 +1,37 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= upower
+PKG_VERSION:= 0.99.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 14f43bc13353e23e7280863f33ac50d2
+PKG_DESCR:= powermanagement
+PKG_SECTION:= misc
+PKG_BUILDDEP:= glib dbus-glib polkit systemd
+PKG_DEPENDS:= glib dbus-glib polkit libgudev
+PKG_URL:= http://upower.freedesktop.org/
+PKG_SITES:= http://upower.freedesktop.org/releases/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,UPOWER,upower,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+upower-install:
+ $(INSTALL_DIR) $(IDIR_UPOWER)/etc
+ $(CP) $(WRKINST)/etc/* \
+ $(IDIR_UPOWER)/etc
+ $(INSTALL_DIR) $(IDIR_UPOWER)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libupower*.so* \
+ $(IDIR_UPOWER)/usr/lib
+ $(INSTALL_DIR) $(IDIR_UPOWER)/usr/sbin
+ $(INSTALL_BIN) $(WRKINST)/usr/libexec/upowerd \
+ $(IDIR_UPOWER)/usr/sbin
+ $(INSTALL_DIR) $(IDIR_UPOWER)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/upower \
+ $(IDIR_UPOWER)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk