mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
e7a6f79e5a
027fdb8
When/if the copyright line does not mention Bitcoin Core developers, add a second line to copyrights in -version, About dialog, and splash screen (Luke Dashjr)cc2095e
Rewrite FormatParagraph to handle newlines within input strings correctly (Luke Dashjr)cddffaf
Bugfix: Include COPYRIGHT_HOLDERS_SUBSTITUTION in Makefile substitutions so it gets passed to extract-strings correctly (Luke Dashjr)29598e4
Move PACKAGE_URL to configure.ac (Luke Dashjr)78ec83d
splashscreen: Resize text to fit exactly (Luke Dashjr)3cae140
Bugfix: Actually use _COPYRIGHT_HOLDERS_SUBSTITUTION everywhere (Luke Dashjr)4d5a3df
Bugfix: gitian-descriptors: Add missing python-setuptools requirement for OS X (biplist module) (Luke Dashjr)e4ab5e5
Bugfix: Correct copyright year in Mac DMG background image (Luke Dashjr)917b1d0
Set copyright holders displayed in notices separately from the package name (Luke Dashjr)c39a6ff
Travis & gitian-osx: Use depends for ds_store and mac_alias modules (Luke Dashjr)902ccde
depends: Add mac_alias to depends (Luke Dashjr)82a2d98
depends: Add ds_store to depends (Cory Fields)de619a3
depends: Pass PYTHONPATH along to configure (Cory Fields)e611b6e
macdeploy: Use rsvg-convert rather than cairosvg (Luke Dashjr)63bcdc5
More complicated package name substitution for Mac deployment (Luke Dashjr)1a6c67c
Parameterise 2009 in translatable copyright strings (Luke Dashjr)d5f4683
Unify package name to as few places as possible without major changes (Luke Dashjr)
18 lines
710 B
Makefile
18 lines
710 B
Makefile
package=native_ds_store
|
|
$(package)_version=c80c23706eae
|
|
$(package)_download_path=https://bitbucket.org/al45tair/ds_store/get
|
|
$(package)_download_file=$($(package)_version).tar.bz2
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.bz2
|
|
$(package)_sha256_hash=ce1aa412211610c63d567bbe3e06213006a2d5ba5d76d89399c151b5472cb0da
|
|
$(package)_install_libdir=$(build_prefix)/lib/python/dist-packages
|
|
$(package)_dependencies=native_biplist
|
|
|
|
define $(package)_build_cmds
|
|
python setup.py build
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
mkdir -p $($(package)_install_libdir) && \
|
|
python setup.py install --root=$($(package)_staging_dir) --prefix=$(build_prefix) --install-lib=$($(package)_install_libdir)
|
|
endef
|