mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
Changes are here: https://github.com/sharkdp/fd/compare/v10.3.0...v10.4.2 Signed-off-by: Deepesh Varatharajan <Deepesh.Varatharajan@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
30 lines
1.3 KiB
BlitzBasic
30 lines
1.3 KiB
BlitzBasic
SUMMARY = "fd is a simple, fast and user-friendly alternative to find."
|
||
HOMEPAGE = "https://crates.io/crates/fd-find"
|
||
DESCRIPTION = "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."
|
||
|
||
LICENSE = "MIT"
|
||
LIC_FILES_CHKSUM = " \
|
||
file://LICENSE-MIT;md5=96713c739748a44f86272791c89ce344 \
|
||
"
|
||
|
||
SRC_URI = "crate://crates.io/fd-find/${PV};name=fd-find"
|
||
SRC_URI += "file://0001-Define-ALIGNOF_MAX_ALIGN_T-for-riscv32.patch;patchdir=../tikv-jemallocator-0.6.1"
|
||
SRC_URI[fd-find.sha256sum] = "b95ed7d1f53e0446a7d47715801f6bee95f816c4aa33e25b5d89a2734ab00436"
|
||
S = "${CARGO_VENDORING_DIRECTORY}/fd-find-${PV}"
|
||
|
||
inherit cargo cargo-update-recipe-crates
|
||
|
||
#Upstream fd-find sets strip = true in [profile.release], which causes Cargo
|
||
#to strip the binary during compilation. This interferes with Yocto’s normal
|
||
#do_package stripping process.By adding the following flag, we ensure that
|
||
#stripping is handled by Yocto as usual:
|
||
CARGO_BUILD_FLAGS += " --config profile.release.strip=false"
|
||
|
||
require ${BPN}-crates.inc
|
||
|
||
BBCLASSEXTEND = "native"
|