32d27c2f4c
RIPGREP_CARGO_MODE was no longer defined after 832c076f26
and caused
issues during the install step as the build directory was malformed.
This patch maintains the release/dev profile distinction, while also
assigning appropriate build folders.
Fixes:
- http://autobuild.buildroot.net/results/a4cd7ecc6d983aa6f15d3be1e21529f17e04b825/
- http://autobuild.buildroot.net/results/2bab8ffa590d4c4eabffe94ed27311c7f6607c98/
Signed-off-by: Sam Voss <sam.voss@gmail.com>
CC: Yann E. MORIN <yann.morin.1998@free.fr>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
39 lines
986 B
Makefile
39 lines
986 B
Makefile
################################################################################
|
|
#
|
|
# ripgrep
|
|
#
|
|
################################################################################
|
|
|
|
RIPGREP_VERSION = 0.8.1
|
|
RIPGREP_SITE = $(call github,burntsushi,ripgrep,$(RIPGREP_VERSION))
|
|
RIPGREP_LICENSE = MIT
|
|
RIPGREP_LICENSE_FILES = LICENSE-MIT
|
|
|
|
RIPGREP_DEPENDENCIES = host-rustc
|
|
RIPGREP_CARGO_ENV = CARGO_HOME=$(HOST_DIR)/share/cargo
|
|
|
|
RIPGREP_BIN_DIR = target/$(RUSTC_TARGET_NAME)/$(RIPGREP_CARGO_BIN_SUBDIR)
|
|
|
|
RIPGREP_CARGO_OPTS = \
|
|
--target=$(RUSTC_TARGET_NAME) \
|
|
--manifest-path=$(@D)/Cargo.toml
|
|
|
|
ifeq ($(BR2_ENABLE_DEBUG),y)
|
|
RIPGREP_CARGO_BIN_SUBDIR = debug
|
|
else
|
|
RIPGREP_CARGO_OPTS += --release
|
|
RIPGREP_CARGO_BIN_SUBDIR = release
|
|
endif
|
|
|
|
define RIPGREP_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(RIPGREP_CARGO_ENV) \
|
|
cargo build $(RIPGREP_CARGO_OPTS)
|
|
endef
|
|
|
|
define RIPGREP_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/$(RIPGREP_BIN_DIR)/rg \
|
|
$(TARGET_DIR)/usr/bin/rg
|
|
endef
|
|
|
|
$(eval $(generic-package))
|