mirror of
https://github.com/openwrt/packages.git
synced 2025-12-22 10:31:22 +00:00
python packages: move all things python under lang/python
I admit this may be be a bit aggressive, but the lang folder is getting cluttered/filled up with Python, PHP, Perl, Ruby, etc. packages. Makes sense to try to group them into per-lang folders. I took the Pythons. Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
This commit is contained in:
57
lang/python/micropython/Makefile
Normal file
57
lang/python/micropython/Makefile
Normal file
@@ -0,0 +1,57 @@
|
||||
#
|
||||
# Copyright (C) 2008-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:=micropython
|
||||
PKG_VERSION=1.8.6-$(PKG_SOURCE_VERSION)
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_MAINTAINER:=Roger D <rogerdammit@gmail.com>
|
||||
PKG_LICENSE:=MIT
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
PKG_SOURCE_PROTO:=git
|
||||
PKG_SOURCE_URL:=https://github.com/micropython/micropython.git
|
||||
PKG_SOURCE_VERSION:=5a1d63fc14dae788f705403a43c2d8639b7dd9cd
|
||||
|
||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_SOURCE_SUBDIR)
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/micropython
|
||||
SUBMENU:=Python
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
TITLE:=Micro Python
|
||||
URL:=http://micropython.org
|
||||
DEPENDS:=+libffi
|
||||
endef
|
||||
|
||||
define Package/micropython/description
|
||||
This package contains Micro Python, a lean and fast implementation of the Python 3.4 programming language
|
||||
that is optimised to run on a microcontroller (and low power computers).
|
||||
endef
|
||||
|
||||
|
||||
MAKE_FLAGS += -C $(PKG_BUILD_DIR)/unix
|
||||
|
||||
define Build/Compile
|
||||
$(call Build/Compile/Default,axtls)
|
||||
$(call Build/Compile/Default)
|
||||
|
||||
endef
|
||||
|
||||
define Package/micropython/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/unix/micropython $(1)/usr/bin/micropython
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,micropython))
|
||||
Reference in New Issue
Block a user