2 # Copyright (C) 2007-2008 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 include $(TOPDIR)/rules.mk
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://pyevent.googlecode.com/files/
16 PKG_MD5SUM:=584912c92d08bf005283fb29a47a6e4d
18 PKG_BUILD_DEPENDS:=python
20 include $(INCLUDE_DIR)/package.mk
21 -include $(if $(DUMP),,$(STAGING_DIR)/mk/python-package.mk)
23 define Package/python-event
27 TITLE:=Python interface to libevent
28 URL:=http://code.google.com/p/pyevent/
29 DEPENDS:=+python-mini +libevent
32 define PyPackage/python-event/filespec
33 +|$(PYTHON_PKG_DIR)/event.so
37 $(if $(Build/Compile/PyMod),,@echo Python packaging code not found.; false)
38 $(call Build/Compile/PyMod,., \
39 install --prefix="$(PKG_INSTALL_DIR)/usr", \
40 LIBEVENT_HOME="$(STAGING_DIR)/usr/lib" \
44 $(eval $(call PyPackage,python-event))
45 $(eval $(call BuildPackage,python-event))