diff options
author | Howard Chu <hyc@symas.com> | 2019-11-14 01:45:59 +0000 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2019-11-17 13:44:18 +0000 |
commit | 5eea312f6da20cdfefabdbec4210fd1ff988f11e (patch) | |
tree | 21706fedd7cd7436e548350161099650c1a7862d /contrib/depends/packages/sodium-darwin.mk | |
parent | Use standard time for depends caches (diff) | |
download | monero-5eea312f6da20cdfefabdbec4210fd1ff988f11e.tar.xz |
Fixup sodium darwin
get rid of sodium-darwin.mk special case, unify back with sodium.mk
Diffstat (limited to '')
-rw-r--r-- | contrib/depends/packages/sodium-darwin.mk | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/contrib/depends/packages/sodium-darwin.mk b/contrib/depends/packages/sodium-darwin.mk deleted file mode 100644 index 9f11a9426..000000000 --- a/contrib/depends/packages/sodium-darwin.mk +++ /dev/null @@ -1,30 +0,0 @@ -package=sodium-darwin -$(package)_version=1.0.16 -$(package)_download_path=https://download.libsodium.org/libsodium/releases/ -$(package)_file_name=libsodium-$($(package)_version).tar.gz -$(package)_sha256_hash=eeadc7e1e1bcef09680fb4837d448fbdf57224978f865ac1c16745868fbd0533 - -define $(package)_set_vars -$(package)_build_opts_darwin=OS=Darwin LIBTOOL="$($(package)_libtool)" -$(package)_config_opts=--enable-static --disable-shared -$(package)_config_opts+=--prefix=$(host_prefix) -endef - -define $(package)_config_cmds - ./autogen.sh &&\ - $($(package)_autoconf) $($(package)_config_opts) RANLIB="$(host_prefix)/native/bin/x86_64-apple-darwin11-ranlib" AR="$(host_prefix)/native/bin/x86_64-apple-darwin11-ar" CC="$(host_prefix)/native/bin/$($(package)_cc)" -endef - -define $(package)_build_cmds - echo "path is problematic here" &&\ - make -endef - -define $(package)_stage_cmds - $(MAKE) DESTDIR=$($(package)_staging_dir) install -endef - -define $(package)_postprocess_cmds - rm lib/*.la -endef - |