mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
3cea6084a9
4ef82f1
depends: biplist 1.0.3 (fanquake)
Pull request description:
biplist should now be usable for reproducible builds without any patching.
One change has been incorporated, the two remaining changes were rejected upstream: https://bitbucket.org/wooster/biplist/pull-requests/9/make-biplist-ordering-deterministic/diff#comment-None
testing on gitian cc @jonasschnelli
Tree-SHA512: a3ef3ecad08b09f7a34d927bc4e3d8604099e9acb2c984bbe741df6162f4014f40e9eb2fd28309fc79d3dd2bb82f14bfd473925b90048e5fd135a471726a4836
16 lines
610 B
Makefile
16 lines
610 B
Makefile
package=native_biplist
|
|
$(package)_version=1.0.3
|
|
$(package)_download_path=https://bitbucket.org/wooster/biplist/downloads
|
|
$(package)_file_name=biplist-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=4c0549764c5fe50b28042ec21aa2e14fe1a2224e239a1dae77d9e7f3932aa4c6
|
|
$(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
|