forked from buildroot/buildroot
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A simple, fast and user-friendly alternative to 'find' https://github.com/sharkdp/fd.git Signed-off-by: Saeed Kazemi <[email protected]> Signed-off-by: Thomas Petazzoni <[email protected]>
- Loading branch information
1 parent
fb97400
commit d95b4db
Showing
5 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2869,6 +2869,7 @@ F: package/biosdevname/ | |
|
||
N: Saeed Kazemi <[email protected]> | ||
F: package/eza/ | ||
F: package/fd/ | ||
F: package/parsec-tool/ | ||
F: package/procs/ | ||
F: package/mxt-app/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
config BR2_PACKAGE_FD | ||
bool "fd" | ||
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS | ||
select BR2_PACKAGE_HOST_RUSTC | ||
help | ||
fd is a program to find entries in your filesystem. It is a | ||
simple, fast and user-friendly alternative to find. While it | ||
does not aim to support all of find's powerful functionality, | ||
it provides sensible (opinionated) defaults for a majority of | ||
use cases. | ||
|
||
https://github.com/sharkdp/fd.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Locally computed | ||
sha256 91da5cc2b99d4754fa5096cda1eeac98f312f712bfca6a41f9972b2287a4c4f9 fd-9.0.0-cargo2.tar.gz | ||
sha256 73c83c60d817e7df1943cb3f0af81e4939a8352c9a96c2fd00451b1116fa635c LICENSE-APACHE | ||
sha256 322cfc7aa0c774d0eca3b2610f1d414de3ddbd7d8dd4b9dea941a13a6eb07455 LICENSE-MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
################################################################################ | ||
# | ||
# fd | ||
# | ||
################################################################################ | ||
|
||
FD_VERSION = 9.0.0 | ||
FD_SITE = $(call github,sharkdp,fd,v$(FD_VERSION)) | ||
FD_LICENSE = Apache-2.0 or MIT | ||
FD_LICENSE_FILES = LICENSE-APACHE LICENSE-MIT | ||
|
||
$(eval $(cargo-package)) |