mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-01 01:47:42 +00:00
22 lines
563 B
Makefile
22 lines
563 B
Makefile
|
package=xcb_proto
|
||
|
$(package)_version=1.14.1
|
||
|
$(package)_download_path=https://xorg.freedesktop.org/archive/individual/proto
|
||
|
$(package)_file_name=xcb-proto-$($(package)_version).tar.xz
|
||
|
$(package)_sha256_hash=f04add9a972ac334ea11d9d7eb4fc7f8883835da3e4859c9afa971efdf57fcc3
|
||
|
|
||
|
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 lib/python*/site-packages/xcbgen/__pycache__
|
||
|
endef
|