add pyusb, from #6767
[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
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=pyevent
11 PKG_VERSION:=0.3
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://pyevent.googlecode.com/files/
16 PKG_MD5SUM:=584912c92d08bf005283fb29a47a6e4d
17
18 PKG_BUILD_DEPENDS:=python
19
20 include $(INCLUDE_DIR)/package.mk
21 $(call include_mk, python-package.mk)
22
23 define Package/python-event
24 SUBMENU:=Python
25 SECTION:=lang
26 CATEGORY:=Languages
27 TITLE:=Python interface to libevent
28 URL:=http://code.google.com/p/pyevent/
29 DEPENDS:=+python-mini +libevent
30 endef
31
32 define PyPackage/python-event/filespec
33 +|$(PYTHON_PKG_DIR)/event.so
34 endef
35
36 define Build/Compile
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" \
41 )
42 endef
43
44 $(eval $(call PyPackage,python-event))
45 $(eval $(call BuildPackage,python-event))