blob: e76d508a77c679136ddc505755db7be9d1937831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# 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:= dbus-python
PKG_VERSION:= 1.2.0
PKG_RELEASE:= 1
PKG_MD5SUM:= b09cd2d1a057cc432ce944de3fc06bf7
PKG_DESCR:= DBUS python bindings
PKG_SECTION:= libs
PKG_DEPENDS:= dbus dbus-glib
PKG_BUILDDEP:= dbus dbus-glib
PKG_URL:= http://dbus.freedesktop.org/doc/dbus-python/
PKG_SITES:= http://dbus.freedesktop.org/releases/dbus-python/
include $(TOPDIR)/mk/package.mk
$(eval $(call PKG_template,DBUS_PYTHON,dbus-python,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
dbus-python-install:
$(INSTALL_DIR) $(IDIR_DBUS_PYTHON)/usr/lib/python2.7/site-packages/
$(CP) $(WRKINST)/usr/lib/python2.7/site-packages/*.so \
$(IDIR_DBUS_PYTHON)/usr/lib/python2.7/site-packages/
$(INSTALL_DIR) $(IDIR_DBUS_PYTHON)/usr/lib/python2.7/site-packages/dbus
$(CP) $(WRKINST)/usr/lib/python2.7/site-packages/dbus/*.py \
$(IDIR_DBUS_PYTHON)/usr/lib/python2.7/site-packages/dbus/
$(INSTALL_DIR) $(IDIR_DBUS_PYTHON)/usr/lib/python2.7/site-packages/dbus/mainloop
$(CP) $(WRKINST)/usr/lib/python2.7/site-packages/dbus/mainloop/*.py \
$(IDIR_DBUS_PYTHON)/usr/lib/python2.7/site-packages/dbus/mainloop
include ${TOPDIR}/mk/pkg-bottom.mk
|