[packages] reaim: use network.sh to find devices
[packages.git] / lang / pyserial / Makefile
1 #
2 # Copyright (C) 2008-2011 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:=pyserial
11 PKG_VERSION:=2.4
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@SF/pyserial
16 PKG_MD5SUM:=eec19df59fd75ba5a136992897f8e468
17
18 PKG_BUILD_DEPENDS:=python
19
20 include $(INCLUDE_DIR)/package.mk
21 $(call include_mk, python-package.mk)
22
23 define Package/pyserial
24   SUBMENU:=Python
25   SECTION:=lang
26   CATEGORY:=Languages
27   TITLE:=pyserial
28   URL:=http://pyserial.sourceforge.net
29   DEPENDS:=+python-mini
30 endef
31
32 define Package/pyserial/description
33   serial port python bindings
34 endef
35
36 define Build/Compile
37         $(call Build/Compile/PyMod,., \
38                 install --prefix="/usr" --root="$(PKG_INSTALL_DIR)", \
39         )
40 endef
41
42 define Package/pyserial/install
43         $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
44         $(CP) \
45             $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
46             $(1)$(PYTHON_PKG_DIR)/
47 endef
48
49 $(eval $(call BuildPackage,pyserial))