2018-09-22 12:07:33 -06:00
|
|
|
package=hidapi
|
2021-11-09 16:40:54 -07:00
|
|
|
$(package)_version=0.11.0
|
2019-06-26 16:55:10 -06:00
|
|
|
$(package)_download_path=https://github.com/libusb/hidapi/archive
|
2018-09-22 12:07:33 -06:00
|
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
2021-11-09 16:40:54 -07:00
|
|
|
$(package)_sha256_hash=391d8e52f2d6a5cf76e2b0c079cfefe25497ba1d4659131297081fc0cd744632
|
2018-10-07 11:16:22 -06:00
|
|
|
$(package)_linux_dependencies=libusb eudev
|
2021-11-09 16:40:54 -07:00
|
|
|
$(package)_patches=missing_win_include.patch
|
2018-09-22 12:07:33 -06:00
|
|
|
|
|
|
|
define $(package)_set_vars
|
2018-10-07 11:16:22 -06:00
|
|
|
$(package)_config_opts=--enable-static --disable-shared
|
2018-09-22 12:07:33 -06:00
|
|
|
$(package)_config_opts+=--prefix=$(host_prefix)
|
2018-10-07 11:16:22 -06:00
|
|
|
$(package)_config_opts_linux+=libudev_LIBS="-L$(host_prefix)/lib -ludev"
|
|
|
|
$(package)_config_opts_linux+=libudev_CFLAGS=-I$(host_prefix)/include
|
|
|
|
$(package)_config_opts_linux+=libusb_LIBS="-L$(host_prefix)/lib -lusb-1.0"
|
|
|
|
$(package)_config_opts_linux+=libusb_CFLAGS=-I$(host_prefix)/include/libusb-1.0
|
2018-10-08 04:25:45 -06:00
|
|
|
$(package)_config_opts_linux+=--with-pic
|
2018-09-22 12:07:33 -06:00
|
|
|
endef
|
|
|
|
|
2021-11-09 16:40:54 -07:00
|
|
|
define $(package)_preprocess_cmds
|
2022-05-09 12:47:33 -06:00
|
|
|
patch -p1 < $($(package)_patch_dir)/missing_win_include.patch && ./bootstrap
|
2021-11-09 16:40:54 -07:00
|
|
|
endef
|
|
|
|
|
2018-09-22 12:07:33 -06:00
|
|
|
define $(package)_config_cmds
|
2022-05-09 12:47:33 -06:00
|
|
|
$($(package)_autoconf) AR_FLAGS=$($(package)_arflags)
|
2018-09-22 12:07:33 -06:00
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_build_cmds
|
|
|
|
$(MAKE)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define $(package)_stage_cmds
|
|
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
|
|
|
endef
|
2019-06-17 03:25:10 -06:00
|
|
|
|
|
|
|
define $(package)_postprocess_cmds
|
|
|
|
rm lib/*.la
|
|
|
|
endef
|
|
|
|
|