Remove clutter in depends installed packages

To speedup the depends cached builds, remove some some clutter from the package
files. This mainly incldues removing all the shared libraries and .la
linker files. It also gives stronger guarantees that monero only links
the static libs without any external rvalues.
This commit is contained in:
TheCharlatan 2019-06-17 11:25:10 +02:00
parent 1dbfc812e1
commit cbbb24cfe1
12 changed files with 42 additions and 9 deletions

View file

@ -23,3 +23,7 @@ endef
define $(package)_stage_cmds
$(MAKE) DESTDIR=$($(package)_staging_dir) install
endef
define $(package)_postprocess_cmds
rm lib/*.la
endef