forked from libretro/Lakka-LibreELEC
430fc7c146
log: - https://github.com/mesonbuild/meson/compare/0.64.1...1.0.0 - https://github.com/mesonbuild/meson/compare/1.0.0...1.0.1
25 lines
848 B
Makefile
25 lines
848 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="meson"
|
|
PKG_VERSION="1.0.1"
|
|
PKG_SHA256="d926b730de6f518728cc7c57bc5e701667bae0c3522f9e369427b2cc7839d3c1"
|
|
PKG_LICENSE="Apache"
|
|
PKG_SITE="http://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"
|
|
|
|
make_host() {
|
|
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
|
|
}
|