mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
fc7b5778f1
6a4cf16
[depends] expat 2.1.1 (fanquake)3e0587b
[depends] miniupnpc 2.0 (fanquake)87b8175
[depends] Latest config.guess & config.sub (fanquake)bd3cbd5
[depends] ZeroMQ 4.1.4 (fanquake)0385202
[depends] ccache 3.2.5 (fanquake)2b2d52e
[depends] Freetype 2.6.3 (fanquake)
23 lines
613 B
Makefile
23 lines
613 B
Makefile
package=freetype
|
|
$(package)_version=2.6.3
|
|
$(package)_download_path=http://download.savannah.gnu.org/releases/$(package)
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.bz2
|
|
$(package)_sha256_hash=371e707aa522acf5b15ce93f11183c725b8ed1ee8546d7b3af549863045863a2
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=--without-zlib --without-png --disable-static
|
|
$(package)_config_opts_linux=--with-pic
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE)
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
endef
|