mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-01 01:47:42 +00:00
31 lines
899 B
Makefile
31 lines
899 B
Makefile
package=libxcb_util_cursor
|
|
$(package)_version=0.1.4
|
|
$(package)_download_path=https://xcb.freedesktop.org/dist
|
|
$(package)_file_name=xcb-util-cursor-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=cc8608ebb695742b6cf84712be29b2b66aa5f6768039528794fca0fa283022bf
|
|
$(package)_dependencies=libxcb libxcb_util_render libxcb_util_image
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=--disable-shared --disable-devel-docs --without-doxygen
|
|
$(package)_config_opts += --disable-dependency-tracking --enable-option-checking
|
|
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/man share/doc lib/*.la
|
|
endef
|