mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
26 lines
663 B
Makefile
26 lines
663 B
Makefile
|
package=eudev
|
||
|
$(package)_version=v3.2.6
|
||
|
$(package)_download_path=https://github.com/gentoo/eudev/archive/
|
||
|
$(package)_file_name=$($(package)_version).tar.gz
|
||
|
$(package)_sha256_hash=a96ecb8637667897b8bd4dee4c22c7c5f08b327be45186e912ce6bc768385852
|
||
|
|
||
|
define $(package)_set_vars
|
||
|
$(package)_config_opts=--disable-gudev --disable-introspection --disable-hwdb --disable-manpages
|
||
|
endef
|
||
|
|
||
|
define $(package)_config_cmds
|
||
|
$($(package)_autoconf)
|
||
|
endef
|
||
|
|
||
|
define $(package)_build_cmd
|
||
|
$(MAKE)
|
||
|
endef
|
||
|
|
||
|
define $(package)_preprocess_cmds
|
||
|
cd $($(package)_build_subdir); autoreconf -f -i
|
||
|
endef
|
||
|
|
||
|
define $(package)_stage_cmds
|
||
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install
|
||
|
endef
|