30 lines
767 B
Makefile
30 lines
767 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 --disable-shared
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf) AR_FLAGS=$($(package)_arflags)
|
|
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
|
|
|
|
define $(package)_postprocess_cmds
|
|
rm lib/*.la
|
|
endef
|