blob: e512bd27abe8f34972398ead13cd93319aca645e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# $NetBSD: rust.mk,v 1.7 2020/10/14 08:23:49 triaxx Exp $
#
# This file determines the type of rust package to use.
#
# It should be included by rust-dependent packages that don't use
# cargo.mk.
#
# === User-settable variables ===
#
# RUST_TYPE
# The preferred type of Rust release to use -
# either bootstrap-from-source or an official binary.
#
# Official Rust binaries are only published for certain platforms,
# including Darwin, FreeBSD, Linux, and NetBSD x86_64.
#
# Possible values: src bin
# Default: src
#
# === Package-settable variables ===
#
# RUST_REQ
# The minimum version of Rust required by the package.
#
# Default: 1.20.0
#
# RUST_RUNTIME
# Whether rust is a runtime dependency.
# Usually it is only needed to build.
#
# Possible values: yes no
# Default: no
.include "../../mk/bsd.fast.prefs.mk"
RUST_REQ?= 1.20.0
RUST_RUNTIME?= no
RUST_TYPE?= src
.if ${RUST_TYPE} == "bin"
. if ${RUST_RUNTIME} == "no"
BUILDLINK_DEPMETHOD.rust-bin?= build
. endif
BUILDLINK_API_DEPENDS.rust-bin+= rust-bin>=${RUST_REQ}
. include "../../lang/rust-bin/buildlink3.mk"
.endif
.if ${RUST_TYPE} == "src"
. if ${RUST_RUNTIME} == "no"
BUILDLINK_DEPMETHOD.rust?= build
. endif
BUILDLINK_API_DEPENDS.rust+= rust>=${RUST_REQ}
. include "../../lang/rust/buildlink3.mk"
.endif
|