mirror of
https://github.com/feather-wallet/feather.git
synced 2024-10-31 17:37:43 +00:00
35 lines
995 B
Makefile
35 lines
995 B
Makefile
|
package=libXau
|
||
|
$(package)_version=1.0.9
|
||
|
$(package)_download_path=https://xorg.freedesktop.org/releases/individual/lib/
|
||
|
$(package)_file_name=libXau-$($(package)_version).tar.bz2
|
||
|
$(package)_sha256_hash=ccf8cbf0dbf676faa2ea0a6d64bcc3b6746064722b606c8c52917ed00dcb73ec
|
||
|
$(package)_dependencies=xproto
|
||
|
|
||
|
# When updating this package, check the default value of
|
||
|
# --disable-xthreads. It is currently enabled.
|
||
|
define $(package)_set_vars
|
||
|
$(package)_config_opts=--disable-shared --disable-lint-library --without-lint
|
||
|
$(package)_config_opts += --disable-dependency-tracking --enable-option-checking
|
||
|
$(package)_config_opts += --with-pic
|
||
|
endef
|
||
|
|
||
|
define $(package)_preprocess_cmds
|
||
|
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub .
|
||
|
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
|
||
|
|
||
|
define $(package)_postprocess_cmds
|
||
|
rm -rf share lib/*.la
|
||
|
endef
|