mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
04dac120f2
fc1bfcf
Update mac_alias to 2.0.7 (Douglas Roark)deee216
Delete mac_alias patch (Douglas Roark) Pull request description: The patch Bitcoin Core has been maintaining for mac_alias was pulled by the mac_alias maintainer in commit 4f31cb084c1c6a8626128b0b00842020b6db9037. Delete the patch and remove the patch from the depends system. Note that this PR won't be complete until a new version of mac_alias containing the patch has been released, and the depends system is updated to reflect the new version. Tree-SHA512: e13f1b45c0a56e95645b1aff77036c8a24c29c3f18ea0d386fba8d6d0f5fd07c434afc09dcd644d46ca096d6a7a0d5097f1eca3be5b5a5475eb3d54407044fd9
16 lines
604 B
Makefile
16 lines
604 B
Makefile
package=native_mac_alias
|
|
$(package)_version=2.0.7
|
|
$(package)_download_path=https://github.com/al45tair/mac_alias/archive/
|
|
$(package)_file_name=v$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=6f606d3b6bccd2112aeabf1a063f5b5ece87005a5d7e97c8faca23b916e88838
|
|
$(package)_install_libdir=$(build_prefix)/lib/python/dist-packages
|
|
|
|
define $(package)_build_cmds
|
|
python3 setup.py build
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
mkdir -p $($(package)_install_libdir) && \
|
|
python3 setup.py install --root=$($(package)_staging_dir) --prefix=$(build_prefix) --install-lib=$($(package)_install_libdir)
|
|
endef
|