feather/contrib/depends/packages/polyseed.mk

24 lines
737 B
Makefile
Raw Normal View History

2022-06-02 12:50:33 +00:00
package=polyseed
2023-03-13 18:29:41 +00:00
$(package)_version=2.0.0
2023-10-10 18:30:44 +00:00
$(package)_download_path=https://github.com/tevador/$(package)/archive/refs/tags/
$(package)_download_file=v$($(package)_version).tar.gz
$(package)_file_name=$(package)-$($(package)_version).tar.gz
2023-03-13 18:29:41 +00:00
$(package)_sha256_hash=f36282fcbcd68d32461b8230c89e1a40661bd46b91109681cec637433004135a
$(package)_patches=force-static-mingw.patch
2022-06-02 12:50:33 +00:00
define $(package)_preprocess_cmds
2023-03-13 18:29:41 +00:00
patch -p1 < $($(package)_patch_dir)/force-static-mingw.patch
2022-06-02 12:50:33 +00:00
endef
define $(package)_config_cmds
$($(package)_cmake) -DCMAKE_INSTALL_PREFIX=$(host_prefix) -DCMAKE_C_COMPILER= .
endef
define $(package)_build_cmds
$(MAKE)
endef
define $(package)_stage_cmds
$(MAKE) DESTDIR=$($(package)_staging_dir) install
endef