2018-09-10 21:22:41 +00:00
|
|
|
package=sodium
|
2018-09-22 18:07:33 +00:00
|
|
|
$(package)_version=1.0.15
|
|
|
|
$(package)_download_path=https://download.libsodium.org/libsodium/releases/
|
|
|
|
$(package)_file_name=libsodium-$($(package)_version).tar.gz
|
|
|
|
$(package)_sha256_hash=fb6a9e879a2f674592e4328c5d9f79f082405ee4bb05cb6e679b90afe9e178f4
|
2018-10-08 13:53:22 +00:00
|
|
|
$(package)_patches=fix-whitespace.patch
|
2018-09-10 21:22:41 +00:00
|
|
|
|
|
|
|
define $(package)_set_vars
|
2018-10-07 17:16:22 +00:00
|
|
|
$(package)_config_opts=--enable-static --disable-shared
|
2018-09-10 21:22:41 +00:00
|
|
|
$(package)_config_opts+=--prefix=$(host_prefix)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_config_cmds
|
|
|
|
./autogen.sh &&\
|
2018-10-08 13:53:22 +00:00
|
|
|
patch -p1 < $($(package)_patch_dir)/fix-whitespace.patch &&\
|
2018-09-10 21:22:41 +00:00
|
|
|
$($(package)_autoconf) $($(package)_config_opts)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
|
|
|
$(MAKE)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
|
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
|
|
endef
|