mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
Commit bde858fe3c changed waf package URL to
tar.bz2 source archive, adjusting makeinstall_host() to use waf binary from
that archive.
16 lines
448 B
Makefile
16 lines
448 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2019-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="waf"
|
|
PKG_VERSION="2.0.23"
|
|
PKG_SHA256="28a96115a5b5be47cf65e62c5416d988159d03f062f978e6462024ca93111503"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://waf.io"
|
|
PKG_URL="https://waf.io/${PKG_NAME}-${PKG_VERSION}.tar.bz2"
|
|
PKG_LONGDESC="The Waf build system"
|
|
PKG_TOOLCHAIN="manual"
|
|
|
|
makeinstall_host() {
|
|
cp -pf ${PKG_BUILD}/waf ${TOOLCHAIN}/bin/
|
|
}
|