diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-11-18 13:23:52 -0600 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-11-18 13:23:52 -0600 |
commit | 5ca0fcf6aabc6ffc04ac5bb92c34c017f138e0b4 (patch) | |
tree | f19e297c67fcc76e35c6519ba1d5a9ce084b836e /contrib/depends/packages/sodium-darwin.mk | |
parent | Merge pull request #6138 (diff) | |
parent | "Fix" non-determinism in native_cctools build (diff) | |
download | monero-5ca0fcf6aabc6ffc04ac5bb92c34c017f138e0b4.tar.xz |
Merge pull request #6150
gitian: add FreeBSD support (bf00d98, 85f87db, b2e5f4e, 1245b75, 7feb29f, 4991b8c, 1ce8d00, 6bb94b1, 7c6c223, 7444cec) (hyc)
Diffstat (limited to 'contrib/depends/packages/sodium-darwin.mk')
-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 - |