python packages cleanup, add some missing deps
[openwrt/svn-archive/archive.git] / lang / pyevent / Makefile
1 #
2 # Copyright (C) 2007-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:=pyevent
12 PKG_VERSION:=0.3
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://pyevent.googlecode.com/files/
17 PKG_MD5SUM:=584912c92d08bf005283fb29a47a6e4d
18
19 PKG_BUILD_DEPENDS:=python
20
21 include $(INCLUDE_DIR)/package.mk
22 -include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
23
24 define Package/python-event
25 SUBMENU:=Python
26 SECTION:=lang
27 CATEGORY:=Languages
28 TITLE:=Python interface to libevent
29 URL:=http://code.google.com/p/pyevent/
30 DEPENDS:=python-core +libevent
31 endef
32
33 define PyPackage/python-event/filespec
34 +|$(PYTHON_PKG_DIR)/event.so
35 endef
36
37 define Build/Compile
38 $(if $(Build/Compile/PyMod),,@echo Python packaging code not found.; false)
39 $(call Build/Compile/PyMod,., \
40 install --prefix="$(PKG_INSTALL_DIR)/usr", \
41 LIBEVENT_HOME="$(STAGING_DIR)/usr/lib" \
42 )
43 endef
44
45 $(eval $(call PyPackage,python-event))
46 $(eval $(call BuildPackage,python-event))