[packages] Use include_mk
[packages.git] / lang / pyserial / 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
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,,install --prefix="$(PKG_INSTALL_DIR)/usr")
38 endef
39
40 define Package/pyserial/install
41         $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR)
42         $(CP) \
43             $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \
44             $(1)$(PYTHON_PKG_DIR)
45 endef
46
47 $(eval $(call BuildPackage,pyserial))