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
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
gnu-makefile.sh
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
perl-ModuleBuild.sh
perl6-dist.sh
python-module.sh build-style/python-module.sh: add do_check 2019-03-21 13:28:56 -03:00
python2-module.sh
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
README
ruby-module.sh
scons.sh
slashpackage.sh
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.