void-packages/common/build-style
q66 f0b03f1df1 common/build-style/haskell-stack.sh: use --skip-ghc-check
This forces all haskell-stack build-style using templates to use
the system ghc and never download any binary distributions even
if the version does not match. This is usually fine as long as
the stackage used for the template is recent enough. If it's
not, it should probably be bumped anyway.

This also enables stack to work on all platforms, even those for
which stack does not offer any binary ghc downloads, as long as
the system ghc is provided, e.g. for ppc64le.
2019-08-07 10:42:10 +02:00
..
cargo.sh build-style/cargo: don't manually configure with cargo, use the 2019-01-20 15:33:10 -02:00
cmake.sh build-style/cmake: powerpc->ppc for CMAKE_SYSTEM_PROCESSOR 2019-06-01 00:58:57 +02:00
configure.sh build-style/configure.sh: use "make check" if available. 2017-11-20 13:26:29 +01:00
fetch.sh xbps-src: reduce basename(1) usage. 2019-04-14 01:47:16 -03:00
gem.sh build-style/gem.sh: remove usage of dirname 2019-04-14 06:22:09 -03:00
gemspec.sh build-style/gemspec.sh: remove usage of dirname 2019-04-14 06:22:09 -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 Revert "build-style/go: use XBPS_MAKEJOBS to control parallelism" 2019-06-25 23:05:17 +02:00
haskell-stack.sh common/build-style/haskell-stack.sh: use --skip-ghc-check 2019-08-07 10:42:10 +02:00
meson.sh build-style/meson: use correct endian on musl ppc64 2019-04-27 16:10:35 +02:00
meta.sh
perl-module.sh common/build-style/perl-module.sh: use target perl includes 2018-09-08 07:10:55 -03:00
perl-ModuleBuild.sh common/build-style/perl-ModuleBuild.sh: use target perl includes 2018-09-08 07:10:55 -03:00
perl6-dist.sh build_style=perl6-dist: add 2018-11-26 04:11:50 -02:00
python-module.sh build-style/python-module.sh: add do_check 2019-03-21 13:28:56 -03: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/python3-module.sh: add do_check 2019-02-22 07:24:17 -03:00
qmake.sh common/build-style/qmake: use custom qt.conf for cross compiling 2019-07-11 04:29:48 +00: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
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 common/build-style/waf,waf3: explicitly pass libdir 2019-01-26 18:43:09 -02:00
waf3.sh common/build-style/waf,waf3: explicitly pass libdir 2019-01-26 18:43:09 -02:00

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.