lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit d572ab9a4d6b21bc6abc86202f54a03aeee7d40c
parent 8d42a18b2df31eab0a2722c881ae0b667a94a697
Author: Steven Barth <steven@midlink.org>
Date:   Thu, 19 Nov 2015 12:32:46 +0100

Merge pull request #1950 from jefferyto/python-pyasn1

python-pyasn1: new package
Diffstat:
Alang/python-pyasn1/Makefile | 48++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+), 0 deletions(-)

diff --git a/lang/python-pyasn1/Makefile b/lang/python-pyasn1/Makefile @@ -0,0 +1,48 @@ +# +# 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:=pyasn1 +PKG_VERSION:=0.1.9 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://pypi.python.org/packages/source/p/pyasn1 +PKG_MD5SUM:=f00a02a631d4016818659d1cc38d229a + +PKG_BUILD_DEPENDS:=python python-setuptools + +PKG_LICENSE:=BSD-2-Clause +PKG_LICENSE_FILES:=LICENSE.txt +PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com> + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/python-pyasn1 + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=python-pyasn1 + URL:=http://pyasn1.sourceforge.net/ + DEPENDS:=+python-light +endef + +define Package/python-pyasn1/description +This is an implementation of ASN.1 types and codecs in Python programming +language. It has been first written to support particular protocol (SNMP) +but then generalized to be suitable for a wide range of protocols +based on ASN.1 specification. +endef + +define Build/Compile + $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR)) +endef + +$(eval $(call PyPackage,python-pyasn1)) +$(eval $(call BuildPackage,python-pyasn1))