Added build_style and cross-profiles dirs from xbps-src.

This commit is contained in:
Juan RP
2014-01-07 17:29:49 +01:00
parent 6751bcd379
commit 074bb4d726
19 changed files with 2122 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#
# This helper is for templates using GNU Makefiles.
#
do_build() {
: ${make_cmd:=make}
${make_cmd} \
CC="$CC" CXX="$CXX" LD="$LD" AR="$AR" RANLIB="$RANLIB" \
CPP="$CPP" AS="$AS" OBJDUMP="$OBJDUMP" STRIP="$STRIP" \
${makejobs} ${make_build_args} ${make_build_target}
}
do_install() {
: ${make_cmd:=make}
: ${make_install_target:=install}
make_install_args+=" PREFIX=/usr DESTDIR=${DESTDIR}"
${make_cmd} ${make_install_args} ${make_install_target}
}