mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
0b3582ddd7
* depends: bump cmake to 3.22.2 Contains additional patches to mitigate errors ``` -- Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the system variable OPENSSL_ROOT_DIR (missing: OPENSSL_CRYPTO_LIBRARY OPENSSL_INCLUDE_DIR) CMake Error at Utilities/cmcurl/CMakeLists.txt:562 (message): Could not find OpenSSL. Install an OpenSSL development package or configure CMake with -DCMAKE_USE_OPENSSL=OFF to build without OpenSSL. ``` * depends: bump bls-dash to 1.2.0 (979f423234
) * depends: bump relic toaecdcae795
20 lines
522 B
Makefile
20 lines
522 B
Makefile
package=cmake
|
|
$(package)_version=3.22.2
|
|
$(package)_download_path=https://cmake.org/files/v3.22/
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=3c1c478b9650b107d452c5bd545c72e2fad4e37c09b89a1984b9a2f46df6aced
|
|
|
|
define $(package)_config_cmds
|
|
export CC="" && \
|
|
export CXX="" && \
|
|
./bootstrap --prefix=$(host_prefix) -- -DCMAKE_USE_OPENSSL=OFF
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE)
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|