blob: 66b208790f50dd3e5bb329e9d50746eaf9c5b526 (
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
PORTNAME= sonic
DISTVERSIONPREFIX= v
DISTVERSION= 1.4.0
PORTREVISION= 9
CATEGORIES= textproc
MAINTAINER= mikael@FreeBSD.org
COMMENT= Fast, lightweight, and schema-less search backend
WWW= https://github.com/valeriansaliou/sonic
LICENSE= MPL20
LICENSE_FILE= ${WRKSRC}/LICENSE.md
BUILD_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT}
USES= cargo compiler:c++11-lang gmake
USE_GITHUB= yes
GH_ACCOUNT= valeriansaliou
USE_RC_SUBR= sonic
CARGO_CRATES= ahash-0.7.6 \
aho-corasick-0.7.19 \
atty-0.2.14 \
autocfg-1.1.0 \
bindgen-0.59.2 \
bitflags-1.3.2 \
byteorder-1.4.3 \
cc-1.0.73 \
cedarwood-0.4.6 \
cexpr-0.6.0 \
cfg-if-0.1.10 \
cfg-if-1.0.0 \
clang-sys-1.4.0 \
clap-3.2.22 \
clap_lex-0.2.4 \
fs_extra-1.2.0 \
fst-0.3.5 \
fst-levenshtein-0.3.0 \
fst-regex-0.3.0 \
fxhash-0.2.1 \
getrandom-0.2.7 \
glob-0.3.0 \
hashbrown-0.12.3 \
hermit-abi-0.1.19 \
indexmap-1.9.1 \
jieba-rs-0.6.7 \
jobserver-0.1.25 \
lazy_static-1.4.0 \
lazycell-1.3.0 \
libc-0.2.135 \
libloading-0.7.3 \
librocksdb-sys-6.20.3 \
linked-hash-map-0.5.6 \
linked_hash_set-0.1.4 \
log-0.4.17 \
memchr-2.5.0 \
memmap-0.6.2 \
minimal-lexical-0.2.1 \
nix-0.18.0 \
nom-7.1.1 \
once_cell-1.15.0 \
os_str_bytes-6.3.0 \
peeking_take_while-0.1.2 \
phf-0.11.1 \
phf_codegen-0.11.1 \
phf_generator-0.11.1 \
phf_shared-0.11.1 \
ppv-lite86-0.2.16 \
proc-macro2-1.0.47 \
quote-1.0.21 \
radix-0.6.0 \
rand-0.8.5 \
rand_chacha-0.3.1 \
rand_core-0.6.4 \
regex-1.6.0 \
regex-syntax-0.3.9 \
regex-syntax-0.6.27 \
rocksdb-0.17.0 \
rustc-hash-1.1.0 \
serde-1.0.145 \
serde_derive-1.0.145 \
shlex-1.1.0 \
siphasher-0.3.10 \
smallvec-1.10.0 \
static_assertions-1.1.0 \
strsim-0.10.0 \
syn-1.0.102 \
termcolor-1.1.3 \
textwrap-0.15.1 \
tikv-jemalloc-sys-0.4.3+5.2.1-patched.2 \
tikv-jemallocator-0.4.3 \
toml-0.5.9 \
twox-hash-1.6.3 \
unicode-ident-1.0.5 \
unicode-segmentation-1.10.0 \
utf8-ranges-1.0.5 \
version_check-0.9.4 \
wasi-0.11.0+wasi-snapshot-preview1 \
whatlang-0.16.1 \
winapi-0.3.9 \
winapi-i686-pc-windows-gnu-0.4.0 \
winapi-util-0.1.5 \
winapi-x86_64-pc-windows-gnu-0.4.0
USERS= sonic
GROUPS= sonic
PLIST_FILES= bin/sonic \
"@sample ${ETCDIR}/config.cfg.sample"
PORTDOCS= CONFIGURATION.md PROTOCOL.md README.md
OPTIONS_DEFINE= DOCS
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sonic
@${MKDIR} ${STAGEDIR}${ETCDIR}
${INSTALL_DATA} ${WRKSRC}/config.cfg ${STAGEDIR}${ETCDIR}/config.cfg.sample
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_MAN} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>
|