diff options
author | Steven Barth <steven@midlink.org> | 2015-07-03 07:46:58 +0200 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2015-07-03 07:46:58 +0200 |
commit | 168cf75aae8263d86137f8edcdda8fa99c7edb69 (patch) | |
tree | 2a89800ee19962875069f8fb25afd65751814b8b | |
parent | c5a8ec5aa30750627adccd6903ed19bd5bf59a08 (diff) | |
parent | 608aa5d3cad7d52c4db52944be24020b95a56eb2 (diff) |
Merge pull request #1485 from mickeprag/master
python-pyserial: new package
-rw-r--r-- | lang/python-pyserial/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/lang/python-pyserial/Makefile b/lang/python-pyserial/Makefile new file mode 100644 index 000000000..ba28e10c5 --- /dev/null +++ b/lang/python-pyserial/Makefile @@ -0,0 +1,50 @@ +# +# Copyright (C) 2015 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=python-pyserial +PKG_VERSION:=2.7 +PKG_RELEASE:=1 +PKG_MAINTAINER:=Micke Prag <micke.prag@telldus.se> +PKG_LICENSE:=Python-2.0 + +PKG_SOURCE:=pyserial-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://pypi.python.org/packages/source/p/pyserial/ +PKG_MD5SUM:=794506184df83ef2290de0d18803dd11 + +PKG_BUILD_DIR:=$(BUILD_DIR)/pyserial-$(PKG_VERSION) +PKG_BUILD_DEPENDS:=python + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/python-pyserial + SUBMENU:=Python + SECTION:=lang + CATEGORY:=Languages + TITLE:=python-pyserial + URL:=http://pyserial.sourceforge.net + DEPENDS:=+python-light +endef + +define Package/python-pyserial/description + serial port python bindings +endef + +define Build/Compile + $(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr") +endef + +define Package/python-pyserial/install + $(INSTALL_DIR) $(1)$(PYTHON_PKG_DIR) + $(CP) \ + $(PKG_INSTALL_DIR)$(PYTHON_PKG_DIR)/* \ + $(1)$(PYTHON_PKG_DIR) +endef + +$(eval $(call BuildPackage,python-pyserial)) |