Files
Arch-R/packages/python/devel/meson/package.mk

26 lines
889 B
Makefile
Raw Normal View History

# SPDX-License-Identifier: GPL-2.0
2018-07-16 20:45:36 +02:00
# Copyright (C) 2016-present Team LibreELEC (https://libreelec.tv)
2017-10-07 11:55:26 -07:00
PKG_NAME="meson"
2024-02-15 07:12:55 +00:00
PKG_VERSION="1.3.2"
PKG_SHA256="492eb450c8b073024276f916f5adbb3c4bb7e90e9e6ec124efda064f3d9b5baa"
2017-10-07 11:55:26 -07:00
PKG_LICENSE="Apache"
2023-12-28 00:28:50 +00:00
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"
2017-10-07 11:55:26 -07:00
PKG_LONGDESC="High productivity build system"
PKG_TOOLCHAIN="manual"
2017-10-07 11:55:26 -07:00
makeinstall_host() {
export DONT_BUILD_LEGACY_PYC=1
2017-10-07 11:55:26 -07:00
python3 setup.py build
}
makeinstall_host() {
exec_thread_safe python3 setup.py install --prefix=${TOOLCHAIN} --skip-build
2017-10-07 11:55:26 -07:00
# 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
2017-10-07 11:55:26 -07:00
}