build: Update libmultiprocess library

Replacing `install` with `install-lib` and `install-bin` is not strictly
necessary just to update the library, but it takes advantage of recent
changes in the new version, and makes the build more minimal.
This commit is contained in:
Hennadii Stepanov 2022-12-09 14:29:19 +00:00
parent 16624e6ff3
commit 1986f129c6
No known key found for this signature in database
GPG key ID: 410108112E7EA81F
2 changed files with 4 additions and 4 deletions

View file

@ -24,5 +24,5 @@ define $(package)_build_cmds
endef
define $(package)_stage_cmds
$(MAKE) DESTDIR=$($(package)_staging_dir) install
$(MAKE) DESTDIR=$($(package)_staging_dir) install-lib
endef

View file

@ -1,8 +1,8 @@
package=native_libmultiprocess
$(package)_version=d576d975debdc9090bd2582f83f49c76c0061698
$(package)_version=1af83d15239ccfa7e47b8764029320953dd7fdf1
$(package)_download_path=https://github.com/chaincodelabs/libmultiprocess/archive
$(package)_file_name=$($(package)_version).tar.gz
$(package)_sha256_hash=9f8b055c8bba755dc32fe799b67c20b91e7b13e67cadafbc54c0f1def057a370
$(package)_sha256_hash=e5587d3feedc7f8473f178a89b94163a11076629825d664964799bbbd5844da5
$(package)_dependencies=native_capnp
define $(package)_config_cmds
@ -14,5 +14,5 @@ define $(package)_build_cmds
endef
define $(package)_stage_cmds
$(MAKE) DESTDIR=$($(package)_staging_dir) install
$(MAKE) DESTDIR=$($(package)_staging_dir) install-bin
endef