vp-build/common/build-style
maxice8 e946d7cfa2 build-style/gemspec.sh: fix cross compilation 2018-11-03 15:38:33 -03:00
..
R-cran.sh Add and document R-cran build style; support CRAN in update-check. 2017-06-08 13:32:40 +02:00
README
cargo.sh build-style cargo: move cargo config from wrksrc to home 2018-11-02 13:39:53 +01:00
cmake.sh build-style/cmake.sh: set CMAKE_SYSTEM_PROCESSOR on cross-builds 2018-10-04 10:30:10 +02:00
configure.sh build-style/configure.sh: use "make check" if available. 2017-11-20 13:26:29 +01:00
fetch.sh
gem.sh build-style/gem.sh: guard usage of find on etc and man 2018-11-02 07:41:36 -03:00
gemspec.sh build-style/gemspec.sh: fix cross compilation 2018-11-03 15:38:33 -03:00
gnu-configure.sh build-style/gnu-configure.sh: warn, don't fail if "make check" is not implemented. 2017-11-20 13:26:29 +01:00
gnu-makefile.sh build-style/gnu-makefile.sh: use "make check" if available. 2017-11-20 13:26:29 +01:00
go.sh Fail go build when $go_import_path is not set 2018-09-20 22:38:35 -07:00
haskell-stack.sh build-style/haskell-stack.sh: init using --system-ghc too. 2018-04-05 14:32:40 +02:00
meson.sh build-style/meson: enable b_ndebug and be explicit about paths used. 2018-10-09 10:36:32 -03:00
meta.sh
perl-ModuleBuild.sh common/build-style/perl-ModuleBuild.sh: use target perl includes 2018-09-08 07:10:55 -03:00
perl-module.sh common/build-style/perl-module.sh: use target perl includes 2018-09-08 07:10:55 -03:00
python-module.sh Revert "common/buildstyle/python*: build dir can be used as python identifier" 2017-01-12 12:27:12 +01:00
python2-module.sh build-style/python{2,3}-module: do not use custom build directory 2017-08-25 16:17:12 +02:00
python3-module.sh build-style/python{2,3}-module: do not use custom build directory 2017-08-25 16:17:12 +02:00
qmake.sh build-style: qmake.sh add missing QMAKE_LINK_C=$CC 2018-11-02 12:25:31 +01:00
ruby-module.sh build-style/ruby-module: force LANG=C to workaround musl. 2015-07-29 10:24:53 +02:00
scons.sh common/build-style/scons.sh: fix comment 2018-03-05 20:49:36 +00:00
slashpackage.sh daemontools: properly use wrksrc/build_wrksrc and no patch_args 2015-02-25 16:16:31 +01:00
waf.sh build-styles/waf{,3}: make sure waf uses the correct python version 2018-08-09 19:53:32 +02:00
waf3.sh build-styles/waf{,3}: make sure waf uses the correct python version 2018-08-09 19:53:32 +02:00

README

BUILD STYLES
============

These shell snippets provide support for multiple build systems, i.e GNU configure,
CMake, etc. A build style file must provide at least the following functions:

	- do_configure
	- do_build
	- do_install

If a source package defines its own do_xxx() function, the function defined in
the build style file is simply ignored.