c7a189c661
This new package fetches a binary version of Cargo, suitable to bootstrap the host variants of the Rust compiler and Cargo, the package manager. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
14 lines
452 B
Makefile
14 lines
452 B
Makefile
################################################################################
|
|
#
|
|
# cargo-bin
|
|
#
|
|
################################################################################
|
|
|
|
CARGO_BIN_VERSION = 0.24.0
|
|
CARGO_BIN_SITE = https://static.rust-lang.org/dist
|
|
CARGO_BIN_SOURCE = cargo-$(CARGO_BIN_VERSION)-$(RUST_HOST_NAME).tar.xz
|
|
CARGO_BIN_LICENSE = Apache-2.0 or MIT
|
|
CARGO_BIN_LICENSE_FILES = LICENSE-APACHE LICENSE-MIT
|
|
|
|
$(eval $(host-generic-package))
|