Merge pull request #6171 from notgood/waffix

waf: use binary from source archive
This commit is contained in:
CvH 2022-02-03 17:51:07 +01:00 committed by GitHub
commit d383c106a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,12 +10,6 @@ PKG_URL="https://waf.io/${PKG_NAME}-${PKG_VERSION}.tar.bz2"
PKG_LONGDESC="The Waf build system"
PKG_TOOLCHAIN="manual"
unpack() {
mkdir -p ${PKG_BUILD}
cp ${SOURCES}/${PKG_NAME}/${PKG_SOURCE_NAME} ${PKG_BUILD}/waf
chmod a+x ${PKG_BUILD}/waf
}
makeinstall_host() {
cp -pf waf ${TOOLCHAIN}/bin/
cp -pf ${PKG_BUILD}/waf ${TOOLCHAIN}/bin/
}