feather/contrib/depends/packages/appimage_runtime.mk

25 lines
866 B
Makefile
Raw Normal View History

2022-12-21 15:15:22 +00:00
# TODO: we're not actually using the sources downloaded here. Perhaps host patches in a github repo.
package=appimage_runtime
$(package)_version=13
$(package)_download_path=https://github.com/AppImage/AppImageKit/archive/refs/tags/
$(package)_file_name=$($(package)_version).tar.gz
$(package)_sha256_hash=51b837c78dd99ecc1cf3dd283f4a98a1be665b01457da0edc1ff736d12974b1a
2023-01-08 13:56:54 +00:00
$(package)_dependencies=libsquashfuse libappimage liblzma
2022-12-21 15:15:22 +00:00
$(package)_patches=CMakeLists.txt runtime.c notify.c
define $(package)_preprocess_cmds
cp -v $($(package)_patch_dir)/* .
endef
define $(package)_config_cmds
2022-12-23 15:43:34 +00:00
$($(package)_cmake) -DCMAKE_INSTALL_PREFIX=$(host_prefix) -DHOST=$(host) -DGLIBC_DYNAMIC_LINKER=$(GLIBC_DYNAMIC_LINKER) .
2022-12-21 15:15:22 +00:00
endef
define $(package)_build_cmds
$(MAKE)
endef
define $(package)_stage_cmds
2022-12-23 15:43:34 +00:00
cp -a runtime $($(package)_staging_prefix_dir)/runtime
2022-12-21 15:15:22 +00:00
endef