mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-05 17:44:34 +00:00
26 lines
889 B
Makefile
26 lines
889 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="meson"
|
|
PKG_VERSION="1.3.2"
|
|
PKG_SHA256="492eb450c8b073024276f916f5adbb3c4bb7e90e9e6ec124efda064f3d9b5baa"
|
|
PKG_LICENSE="Apache"
|
|
PKG_SITE="https://mesonbuild.com"
|
|
PKG_URL="https://github.com/mesonbuild/meson/releases/download/${PKG_VERSION}/${PKG_NAME}-${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_HOST="Python3:host setuptools:host"
|
|
PKG_LONGDESC="High productivity build system"
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
makeinstall_host() {
|
|
export DONT_BUILD_LEGACY_PYC=1
|
|
python3 setup.py build
|
|
}
|
|
|
|
makeinstall_host() {
|
|
exec_thread_safe python3 setup.py install --prefix=${TOOLCHAIN} --skip-build
|
|
|
|
# Avoid using full path to python3 that may exceed 128 byte limit.
|
|
# Instead use PATH as we know our toolchain is first.
|
|
sed -e '1 s/^#!.*$/#!\/usr\/bin\/env python3/' -i ${TOOLCHAIN}/bin/meson
|
|
}
|