4dd51f3a72
-Split pkg Makefile and move CARGO_CRATE_DEPENDS to own file -Removed dependency on clang, it compiles fine with default gcc v8.2.1 -No functional changes with respect to v8.2.0. Bugfix in the release process. v8.2.0 Features: -Add new --prune flag, see #535 (@reima) -Improved the usability of the time-based options, see #624 and #645 (@gorogoroumaru) -Add support for exact file sizes in the --size filter, see #669 and #696 (@Rogach) -fd now prints an error message if the search pattern requires a leading dot but --hidden is not enabled (Unix only), see #615 Bugfixes: -Avoid panic when performing limited searches in directories with restricted permissions, see #678 -Invalid numeric command-line arguments are silently ignored, see #675 -Disable jemalloc on Android, see #662 -The --help text will be colorless if NO_COLOR has been set, see #600 (@xanonid) Changes: -If LS_COLORS is not set (e.g. on Windows), we now provide a more comprehensive default which includes much more filetypes, see #604 and #682 (mjsir911). Other: -Added zsh completion files, see #654 and #189 (@smancill)
28 lines
752 B
Makefile
28 lines
752 B
Makefile
# $NetBSD: Makefile,v 1.4 2020/12/08 07:14:47 pin Exp $
|
|
|
|
DISTNAME= fd-find-8.2.1
|
|
CATEGORIES= sysutils
|
|
GITHUB_PROJECT= fd
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=sharkdp/}
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
DIST_SUBDIR= ${PKGBASE}
|
|
EXTRACT_USING= bsdtar
|
|
|
|
MAINTAINER= milan@petabyte.dev
|
|
HOMEPAGE= https://github.com/sharkdp/fd/
|
|
COMMENT= Simple, fast und user-friendly alternative to find
|
|
LICENSE= apache-2.0
|
|
|
|
.include "cargo-depends.mk"
|
|
|
|
USE_LANGUAGES= c c++
|
|
USE_TOOLS+= gmake
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/target/release/fd ${DESTDIR}${PREFIX}/bin/fdfind
|
|
${INSTALL_MAN} ${WRKSRC}/doc/fd.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/fdfind.1
|
|
|
|
.include "../../lang/rust/cargo.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|