xbps-src: new "scons" build-style.
This commit is contained in:
20
common/build-style/scons.sh
Normal file
20
common/build-style/scons.sh
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
#
|
||||||
|
# This helper is for templates using Qt4/Qt5 qmake.
|
||||||
|
#
|
||||||
|
do_build() {
|
||||||
|
: ${make_cmd:=scons}
|
||||||
|
|
||||||
|
${make_cmd} ${makejobs} CC=$CC CXX=$CXX CCFLAGS="$CFLAGS" \
|
||||||
|
CXXFLAGS="$CXXFLAGS" LINKFLAGS="$LDFLAGS" \
|
||||||
|
prefix=/usr DESTDIR=${DESTDIR} \
|
||||||
|
${make_build_args} ${make_build_target}
|
||||||
|
}
|
||||||
|
do_install() {
|
||||||
|
: ${make_cmd:=scons}
|
||||||
|
: ${make_install_target:=install}
|
||||||
|
|
||||||
|
${make_cmd} ${makejobs} CC=$CC CXX=$CXX CCFLAGS="$CFLAGS" \
|
||||||
|
CXXFLAGS="$CXXFLAGS" LINKFLAGS="$LDFLAGS" \
|
||||||
|
prefix=/usr DESTDIR=${DESTDIR} \
|
||||||
|
${make_install_args} ${make_install_target}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user