micropython (NEW): Python3 for microcontrollers, unix version.

This commit is contained in:
James Mills 2015-04-27 07:59:13 +10:00
parent 2f1be3f689
commit 9816ee6df1
3 changed files with 22 additions and 0 deletions

3
micropython/.footprint Normal file
View File

@ -0,0 +1,3 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/micropython

1
micropython/.md5sum Normal file
View File

@ -0,0 +1 @@
bc84f9f2ae2ef782b490a6afc3a2a666 micropython-1.4.2.tar.gz

18
micropython/Pkgfile Normal file
View File

@ -0,0 +1,18 @@
# Description: Python3 for microcontrollers, unix version
# URL: http://micropython.org/
# Maintainer: James Mills, prologic at shortcircuit dot net dot au
#
# Depends on: readline libffi
name=micropython
version=1.4.2
release=1
source=(http://shortcircuit.net.au/~prologic/distfiles/$name-$version.tar.gz)
build() {
cd $name-$version/unix
make
install -Dm755 micropython "$PKG/usr/bin/micropython"
}