2008-06-03 21:11:50 +00:00
|
|
|
#
|
2009-05-14 07:13:06 +00:00
|
|
|
# Copyright (C) 2008-2009 OpenWrt.org
|
2008-06-03 21:11:50 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=telepathy-python
|
2008-12-31 15:02:25 +00:00
|
|
|
PKG_VERSION:=0.15.3
|
2008-06-03 21:11:50 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://telepathy.freedesktop.org/releases/telepathy-python/
|
2008-12-31 15:02:25 +00:00
|
|
|
PKG_MD5SUM:=594a66a70764052e30df9428b5be52b2
|
2008-06-03 21:11:50 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2010-02-24 23:13:32 +00:00
|
|
|
$(call include_mk, python-package.mk)
|
2008-06-03 21:11:50 +00:00
|
|
|
|
|
|
|
define Package/telepathy-python
|
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
TITLE:=telepathy-python
|
|
|
|
URL:=http://telepathy.freedesktop.org
|
2009-03-06 20:27:09 +00:00
|
|
|
DEPENDS:=+python-mini +dbus-python
|
2008-06-03 21:11:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/telepathy-python/description
|
2009-01-03 00:28:00 +00:00
|
|
|
telepathy python bindings
|
2008-06-03 21:11:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2008-10-02 15:33:26 +00:00
|
|
|
$(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr")
|
2008-06-03 21:11:50 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/telepathy-python/install
|
2008-12-31 15:02:25 +00:00
|
|
|
$(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
|
|
|
|
$(1)$(PYTHON_PKG_DIR)
|
2008-06-03 21:11:50 +00:00
|
|
|
endef
|
|
|
|
|
2008-06-15 18:18:23 +00:00
|
|
|
$(eval $(call RequireCommand,xsltproc, \
|
|
|
|
$(PKG_NAME) requires xsltproc installed on the host-system. \
|
|
|
|
))
|
2009-05-14 07:13:06 +00:00
|
|
|
|
|
|
|
$(eval $(call BuildPackage,telepathy-python))
|
|
|
|
|