just a spelling error in the description
[openwrt/svn-archive/archive.git] / lang / telepathy-python / Makefile
1 #
2 # Copyright (C) 2008 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=telepathy-python
12 PKG_VERSION:=0.15.3
13 PKG_RELEASE:=1
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://telepathy.freedesktop.org/releases/telepathy-python/
16 PKG_MD5SUM:=594a66a70764052e30df9428b5be52b2
17
18 include $(INCLUDE_DIR)/package.mk
19 -include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
20
21 define Package/telepathy-python
22 SUBMENU:=Python
23 SECTION:=lang
24 CATEGORY:=Languages
25 TITLE:=telepathy-python
26 URL:=http://telepathy.freedesktop.org
27 DEPENDS:=python-core +dbus-python
28 endef
29
30 define Package/telepathy-python/description
31 telepathy python bindings
32 endef
33
34 define Build/Compile
35 $(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr")
36 endef
37
38 define Package/telepathy-python/install
39 $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
40 $(CP) \
41 $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
42 $(1)$(PYTHON_PKG_DIR)
43 endef
44
45 $(eval $(call BuildPackage,telepathy-python))
46
47 $(eval $(call RequireCommand,xsltproc, \
48 $(PKG_NAME) requires xsltproc installed on the host-system. \
49 ))