summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/sd/sd_1.1.0.bb
diff options
context:
space:
mode:
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.bb27
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 @@
1SUMMARY = "sd is an intuitive and fast CLI for search and replace"
2HOMEPAGE = "https://github.com/chmln/sd"
3DESCRIPTION = "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
9LICENSE = "MIT"
10LIC_FILES_CHKSUM = " \
11 file://LICENSE;md5=aec69d9265f7a44821317ebe1e576f1b \
12"
13
14SRC_URI = "git://github.com/chmln/sd.git;protocol=https;nobranch=1;tag=v${PV}"
15SRCREV = "4a7b216552d64134c0fa17a59b9d557d89019f0f"
16
17inherit 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.
21CARGO_BUILD_FLAGS += "--bin sd"
22
23require ${BPN}-crates.inc
24
25INSANE_SKIP:${PN} = "already-stripped"
26
27BBCLASSEXTEND = "native"