diff options
Diffstat (limited to 'meta-oe/recipes-extended/sd/sd_1.1.0.bb')
| -rw-r--r-- | meta-oe/recipes-extended/sd/sd_1.1.0.bb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/sd/sd_1.1.0.bb b/meta-oe/recipes-extended/sd/sd_1.1.0.bb new file mode 100644 index 0000000000..6dc369fff9 --- /dev/null +++ b/meta-oe/recipes-extended/sd/sd_1.1.0.bb | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | SUMMARY = "sd is an intuitive and fast CLI for search and replace" | ||
| 2 | HOMEPAGE = "https://github.com/chmln/sd" | ||
| 3 | DESCRIPTION = "sd is a command-line tool written in Rust for simple and \ | ||
| 4 | fast find and replace. It uses familiar regular expression \ | ||
| 5 | syntax and also supports string-literal replacements \ | ||
| 6 | without escaping. With clear syntax and sensible defaults, \ | ||
| 7 | it offers an easy-to-use alternative to traditional tools like sed." | ||
| 8 | |||
| 9 | LICENSE = "MIT" | ||
| 10 | LIC_FILES_CHKSUM = " \ | ||
| 11 | file://LICENSE;md5=aec69d9265f7a44821317ebe1e576f1b \ | ||
| 12 | " | ||
| 13 | |||
| 14 | SRC_URI = "git://github.com/chmln/sd.git;protocol=https;nobranch=1;tag=v${PV}" | ||
| 15 | SRCREV = "4a7b216552d64134c0fa17a59b9d557d89019f0f" | ||
| 16 | |||
| 17 | inherit cargo cargo-update-recipe-crates | ||
| 18 | |||
| 19 | # Build only the main binary ("sd"); helper binaries like "xtask" | ||
| 20 | # are dev-only and not needed, preventing extra build artifacts. | ||
| 21 | CARGO_BUILD_FLAGS += "--bin sd" | ||
| 22 | |||
| 23 | require ${BPN}-crates.inc | ||
| 24 | |||
| 25 | INSANE_SKIP:${PN} = "already-stripped" | ||
| 26 | |||
| 27 | BBCLASSEXTEND = "native" | ||
