blob: 14b7a480b937d34e3e7c1dd0e691331d799bad22 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
PORTNAME= kalker
DISTVERSIONPREFIX= v
DISTVERSION= 2.0.0
PORTREVISION= 2
CATEGORIES= math
MAINTAINER= ashish@FreeBSD.org
COMMENT= Scientific calculator that supports math-like syntax
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libgmp.so:math/gmp \
libmpc.so:math/mpc
USES= cargo
USE_GITHUB= yes
GH_ACCOUNT= PaddiM8
CARGO_CRATES= aho-corasick-0.7.15 \
ansi_term-0.12.1 \
atty-0.2.14 \
az-1.0.0 \
bitflags-1.2.1 \
bumpalo-3.4.0 \
cc-1.0.66 \
cfg-if-0.1.10 \
cfg-if-1.0.0 \
console_error_panic_hook-0.1.6 \
dirs-3.0.2 \
dirs-next-2.0.0 \
dirs-sys-0.3.6 \
dirs-sys-next-0.1.1 \
fs2-0.4.3 \
getrandom-0.1.15 \
getrandom-0.2.3 \
hermit-abi-0.1.18 \
js-sys-0.3.46 \
lazy_static-1.4.0 \
libc-0.2.81 \
log-0.4.11 \
memchr-2.3.4 \
nix-0.19.1 \
proc-macro2-1.0.24 \
quote-1.0.7 \
redox_syscall-0.1.57 \
redox_syscall-0.2.10 \
redox_users-0.3.5 \
redox_users-0.4.0 \
regex-1.4.2 \
regex-syntax-0.6.21 \
rug-1.11.0 \
rustyline-7.1.0 \
scoped-tls-1.0.0 \
scopeguard-1.1.0 \
seahorse-1.1.1 \
serde-1.0.118 \
syn-1.0.54 \
test-case-1.0.0 \
thread_local-1.0.1 \
toml-0.5.7 \
unicode-segmentation-1.7.1 \
unicode-width-0.1.8 \
unicode-xid-0.2.1 \
utf8parse-0.2.0 \
version_check-0.9.2 \
wasi-0.9.0+wasi-snapshot-preview1 \
wasi-0.10.2+wasi-snapshot-preview1 \
wasm-bindgen-0.2.69 \
wasm-bindgen-backend-0.2.69 \
wasm-bindgen-futures-0.4.19 \
wasm-bindgen-macro-0.2.69 \
wasm-bindgen-macro-support-0.2.69 \
wasm-bindgen-shared-0.2.69 \
wasm-bindgen-test-0.3.19 \
wasm-bindgen-test-macro-0.3.19 \
web-sys-0.3.46 \
winapi-0.3.9 \
winapi-i686-pc-windows-gnu-0.4.0 \
winapi-x86_64-pc-windows-gnu-0.4.0 \
winres-0.1.11 \
gmp-mpfr-sys@git+https://gitlab.com/tspiteri/gmp-mpfr-sys.git\#21966f4bfb56c87d407eb14c72e92ef4e55856aa
CARGO_CARGOTOML= ${WRKSRC}/cli/Cargo.toml
CARGO_INSTALL_PATH= ./cli
PLIST_FILES= bin/kalker
post-patch:
${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g' ${WRKSRC_crate_gmp-mpfr-sys}/build.rs
.include <bsd.port.mk>
|