forked from such-gitea/wownero
All checks were successful
Build Wownero Core (Portable Mac Fix) / build-all (aarch64-apple-darwin11) (push) Successful in 12m36s
Build Wownero Core (Portable Mac Fix) / build-all (aarch64-linux-gnu) (push) Successful in 8m56s
Build Wownero Core (Portable Mac Fix) / build-all (riscv64-linux-gnu) (push) Successful in 11m38s
Build Wownero Core (Portable Mac Fix) / build-all (x86_64-apple-darwin11) (push) Successful in 13m8s
Build Wownero Core (Portable Mac Fix) / build-all (x86_64-linux-gnu) (push) Successful in 9m13s
Build Wownero Core (Portable Mac Fix) / build-all (x86_64-w64-mingw32) (push) Successful in 10m9s
Build Wownero Core (Portable Mac Fix) / release (push) Successful in 26s
- Upgrade dependencies: Boost 1.90.0, OpenSSL 3.0.13, Zlib 1.3.1, Zstd 1.5.5 - Fix macOS ARM/Intel builds by relaxing static runtime requirements in CMake - Add missing Boost libraries (context, coroutine) for LWS support - Sanitize depends system to prevent Makefile corruption - Enable full static linking for Linux and Windows targets
14 lines
500 B
Makefile
14 lines
500 B
Makefile
package=zstd
|
|
$(package)_version=1.5.5
|
|
$(package)_download_path=https://github.com/facebook/zstd/releases/download/v$($(package)_version)/
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=9c4396cc829cfae319a6e2615202e82aad41372073482fce286fac78646d3ee4
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE) -C lib libzstd.a
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
cp lib/libzstd.a $($(package)_staging_prefix_dir)/lib/
|
|
cp lib/zstd.h $($(package)_staging_prefix_dir)/include/
|
|
endef |