blob: c33e29103980b10fbbd21fc291419d96b449f7b5 (
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
PORTNAME= mcfly
DISTVERSIONPREFIX= v
DISTVERSION= 0.6.1
CATEGORIES= sysutils
MAINTAINER= yuri@FreeBSD.org
COMMENT= Fly through your shell history
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= cargo
USE_GITHUB= yes
GH_ACCOUNT= cantino
CARGO_CRATES= ahash-0.7.6 \
aho-corasick-0.7.18 \
ansi_term-0.12.1 \
atty-0.2.14 \
autocfg-1.1.0 \
bitflags-1.3.2 \
bstr-0.2.17 \
cc-1.0.73 \
cfg-if-1.0.0 \
chrono-0.4.19 \
clap-2.34.0 \
csv-1.1.6 \
csv-core-0.1.10 \
directories-next-2.0.0 \
dirs-next-2.0.0 \
dirs-sys-next-0.1.2 \
either-1.7.0 \
fallible-iterator-0.2.0 \
fallible-streaming-iterator-0.1.9 \
getrandom-0.2.7 \
hashbrown-0.12.2 \
hashlink-0.8.0 \
hermit-abi-0.1.19 \
humantime-2.1.0 \
itertools-0.10.3 \
itoa-0.4.8 \
lazy_static-1.4.0 \
libc-0.2.126 \
libsqlite3-sys-0.25.0 \
memchr-2.5.0 \
num-integer-0.1.45 \
num-traits-0.2.15 \
numtoa-0.1.0 \
once_cell-1.13.0 \
pkg-config-0.3.25 \
ppv-lite86-0.2.16 \
proc-macro2-1.0.40 \
quote-1.0.20 \
rand-0.8.5 \
rand_chacha-0.3.1 \
rand_core-0.6.3 \
redox_syscall-0.2.13 \
redox_termios-0.1.2 \
redox_users-0.4.3 \
regex-1.6.0 \
regex-automata-0.1.10 \
regex-syntax-0.6.27 \
relative-path-1.7.2 \
rusqlite-0.28.0 \
ryu-1.0.10 \
serde-1.0.139 \
shellexpand-2.1.0 \
smallvec-1.9.0 \
strsim-0.8.0 \
syn-1.0.98 \
termion-1.5.6 \
textwrap-0.11.0 \
thiserror-1.0.31 \
thiserror-impl-1.0.31 \
time-0.1.44 \
unicode-ident-1.0.2 \
unicode-segmentation-1.9.0 \
unicode-width-0.1.9 \
vcpkg-0.2.15 \
vec_map-0.8.2 \
version_check-0.9.4 \
wasi-0.10.0+wasi-snapshot-preview1 \
wasi-0.11.0+wasi-snapshot-preview1 \
winapi-0.3.9 \
winapi-i686-pc-windows-gnu-0.4.0 \
winapi-x86_64-pc-windows-gnu-0.4.0
PLIST_FILES= bin/${PORTNAME} \
etc/bash_completion.d/${PORTNAME}.bash \
share/fish/vendor_completions.d/${PORTNAME}.fish \
share/zsh/site-functions/_${PORTNAME}
post-install: # install shell completion files
# strip
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/mcfly
# bash
${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d/
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.bash ${STAGEDIR}${PREFIX}/etc/bash_completion.d
# fish
${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/vendor_completions.d
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.fish ${STAGEDIR}${PREFIX}/share/fish/vendor_completions.d
# zsh
${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions
${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.zsh ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_${PORTNAME}
.include <bsd.port.mk>
|