2015-12-17 22:43:56 +01:00
|
|
|
package=native_biplist
|
2018-03-07 00:18:14 +01:00
|
|
|
$(package)_version=1.0.3
|
|
|
|
$(package)_download_path=https://bitbucket.org/wooster/biplist/downloads
|
2015-12-17 22:43:56 +01:00
|
|
|
$(package)_file_name=biplist-$($(package)_version).tar.gz
|
2018-03-07 00:18:14 +01:00
|
|
|
$(package)_sha256_hash=4c0549764c5fe50b28042ec21aa2e14fe1a2224e239a1dae77d9e7f3932aa4c6
|
2019-03-14 20:08:54 +01:00
|
|
|
$(package)_install_libdir=$(build_prefix)/lib/python3/dist-packages
|
2015-12-17 22:43:56 +01:00
|
|
|
|
|
|
|
define $(package)_build_cmds
|
2019-03-14 20:08:54 +01:00
|
|
|
python3 setup.py build
|
2015-12-17 22:43:56 +01:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
|
|
|
mkdir -p $($(package)_install_libdir) && \
|
2019-03-14 20:08:54 +01:00
|
|
|
python3 setup.py install --root=$($(package)_staging_dir) --prefix=$(build_prefix) --install-lib=$($(package)_install_libdir)
|
2015-12-17 22:43:56 +01:00
|
|
|
endef
|