vp-build/srcpkgs/micropython/template

39 lines
1.0 KiB
Bash

# Template file for 'micropython'
pkgname=micropython
version=1.14
revision=1
build_wrksrc=ports/unix
hostmakedepends="pkg-config python3"
makedepends="libffi-devel"
short_desc="Implementation of Python 3.x for microcontrollers"
maintainer="Orphaned <orphan@voidlinux.org>"
license="MIT"
homepage="https://micropython.org/"
distfiles="https://github.com/micropython/micropython/releases/download/v${version}/micropython-${version}.tar.xz"
checksum=97306156fdeab120a1244626c75a929bb820722afdfc1317dbd5dadef388d94c
case "$XBPS_TARGET_MACHINE" in
arm*-musl) nopie=yes ;; # building with PIE creates text relocations in the binary
ppc*) broken="missing nlr_push" ;;
esac
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
makedepends+=" musl-legacy-compat"
fi
pre_configure() {
vsed -i 's|-Werror||;/^COPT =/d' Makefile
}
do_build() {
unset CPP
make -C ../../mpy-cross V=1 STRIP=echo ${makejobs}
make V=1 CC=${CC} CFLAGS_EXTRA="${CPPFLAGS} ${CFLAGS}" \
LDFLAGS_EXTRA="${LDFLAGS}" STRIP=echo ${makejobs} axtls all
}
do_install() {
vbin micropython
vlicense ../../LICENSE
}