diff --git a/common/build-style/waf.sh b/common/build-style/waf.sh deleted file mode 100644 index e943765f9b1..00000000000 --- a/common/build-style/waf.sh +++ /dev/null @@ -1,21 +0,0 @@ -# -# This helper is for templates using WAF to build/install. -# -do_configure() { - : ${configure_script:=waf} - - PYTHON=/usr/bin/python2 python2 ${configure_script} configure \ - --prefix=/usr --libdir=/usr/lib${XBPS_TARGET_WORDSIZE} ${configure_args} -} - -do_build() { - : ${configure_script:=waf} - - PYTHON=/usr/bin/python2 python2 ${configure_script} build ${make_build_args} -} - -do_install() { - : ${configure_script:=waf} - - PYTHON=/usr/bin/python2 python2 ${configure_script} install --destdir=${DESTDIR} ${make_install_args} -}