mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
Packages referencing variables defined in setup_toolchain such as CC, CXX, AR, CFLAGS, LDFLAGS, HOST_CC etc. etc. must only reference these variables in pre_build()/pre_configure()/pre_make() etc. functions, as the variables will not be available when the package is sourced, but will be available after the call to setup_toolchain() from scripts/build.
21 lines
611 B
Makefile
21 lines
611 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="make"
|
|
PKG_VERSION="4.2.1"
|
|
PKG_SHA256="d6e262bf3601b42d2b1e4ef8310029e1dcf20083c5446b4b7aa67081fdffc589"
|
|
PKG_LICENSE="GPLv3"
|
|
PKG_SITE="https://www.gnu.org/software/make/"
|
|
PKG_URL="http://ftpmirror.gnu.org/make/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
|
PKG_DEPENDS_HOST=""
|
|
PKG_LONGDESC="Utility to maintain groups of programs."
|
|
|
|
pre_configure_host() {
|
|
export CC=$LOCAL_CC
|
|
}
|
|
|
|
post_makeinstall_host() {
|
|
ln -sf make $TOOLCHAIN/bin/gmake
|
|
}
|