20 lines
500 B
Plaintext
20 lines
500 B
Plaintext
# 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=2
|
|
source=(http://shortcircuit.net.au/~prologic/distfiles/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version/unix
|
|
|
|
make
|
|
|
|
install -D -m 755 micropython $PKG/usr/bin/micropython
|
|
install -D -m 755 ../tools/pip-micropython $PKG/usr/bin/pip-micropython
|
|
}
|