87378368c4
- www/firefox temporarily loses SIMD in charset conversion, see https://bugzilla.mozilla.org/show_bug.cgi?id=1521249 - Force rebuild all consumers to catch regressions early Changes: https://blog.rust-lang.org/2019/02/28/Rust-1.33.0.html Tested by: Mikaël Urankar (aarch64, armv6, armv7, powerpc64), Piotr Kubaj (powerpc64) Approved by: rust (tobik) Differential Revision: https://reviews.freebsd.org/D19354
97 lines
2.2 KiB
Makefile
97 lines
2.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= exa
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.8.0
|
|
PORTREVISION= 8
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= tobik@FreeBSD.org
|
|
COMMENT= Modern replacement for ls
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENCE
|
|
|
|
USES= cargo
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= ogham
|
|
|
|
CARGO_CRATES= aho-corasick-0.5.3 \
|
|
ansi_term-0.8.0 \
|
|
bitflags-0.7.0 \
|
|
bitflags-0.9.1 \
|
|
byteorder-0.4.2 \
|
|
cmake-0.1.25 \
|
|
conv-0.3.3 \
|
|
custom_derive-0.1.7 \
|
|
datetime-0.4.5 \
|
|
env_logger-0.3.5 \
|
|
gcc-0.3.53 \
|
|
getopts-0.2.14 \
|
|
git2-0.6.8 \
|
|
glob-0.2.11 \
|
|
idna-0.1.4 \
|
|
iso8601-0.1.1 \
|
|
kernel32-sys-0.2.2 \
|
|
lazy_static-0.2.8 \
|
|
libc-0.2.49 \
|
|
libgit2-sys-0.6.14 \
|
|
libz-sys-1.0.16 \
|
|
locale-0.2.2 \
|
|
log-0.3.8 \
|
|
magenta-0.1.1 \
|
|
magenta-sys-0.1.1 \
|
|
matches-0.1.6 \
|
|
memchr-0.1.11 \
|
|
natord-1.0.9 \
|
|
nom-1.2.4 \
|
|
num-0.1.40 \
|
|
num-bigint-0.1.40 \
|
|
num-complex-0.1.40 \
|
|
num-integer-0.1.35 \
|
|
num-iter-0.1.34 \
|
|
num-rational-0.1.39 \
|
|
num-traits-0.1.40 \
|
|
num_cpus-1.6.2 \
|
|
number_prefix-0.2.7 \
|
|
pad-0.1.4 \
|
|
percent-encoding-1.0.0 \
|
|
pkg-config-0.3.9 \
|
|
rand-0.3.16 \
|
|
redox_syscall-0.1.31 \
|
|
regex-0.1.80 \
|
|
regex-syntax-0.3.9 \
|
|
rustc-serialize-0.3.24 \
|
|
scoped_threadpool-0.1.7 \
|
|
term_grid-0.1.6 \
|
|
term_size-0.3.0 \
|
|
thread-id-2.0.0 \
|
|
thread_local-0.2.7 \
|
|
unicode-bidi-0.3.4 \
|
|
unicode-normalization-0.1.5 \
|
|
unicode-width-0.1.4 \
|
|
url-1.5.1 \
|
|
users-0.5.3 \
|
|
utf8-ranges-0.1.3 \
|
|
vcpkg-0.2.2 \
|
|
winapi-0.2.8 \
|
|
winapi-build-0.1.1 \
|
|
zoneinfo_compiled-0.4.5
|
|
|
|
PLIST_FILES= bin/exa \
|
|
man/man1/exa.1.gz \
|
|
etc/bash_completion.d/exa.bash \
|
|
share/fish/completions/exa.fish \
|
|
share/zsh/site-functions/_exa
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/completions.bash ${STAGEDIR}${PREFIX}/etc/bash_completion.d/exa.bash
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/completions.fish ${STAGEDIR}${PREFIX}/share/fish/completions/exa.fish
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions
|
|
${INSTALL_DATA} ${WRKSRC}/contrib/completions.zsh ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_exa
|
|
${INSTALL_MAN} ${WRKSRC}/contrib/man/exa.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/exa
|
|
|
|
.include <bsd.port.mk>
|