mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
18 lines
454 B
Makefile
18 lines
454 B
Makefile
|
package=cmake
|
||
|
$(package)_version=3.14.7
|
||
|
$(package)_download_path=https://cmake.org/files/v3.14/
|
||
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
||
|
$(package)_sha256_hash=9221993e0af3e6d10124d840ff24f5b2f3b884416fca04d3312cb0388dec1385
|
||
|
|
||
|
define $(package)_config_cmds
|
||
|
./bootstrap --prefix=$(host_prefix)
|
||
|
endef
|
||
|
|
||
|
define $(package)_build_cmds
|
||
|
$(MAKE)
|
||
|
endef
|
||
|
|
||
|
define $(package)_stage_cmds
|
||
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
||
|
endef
|