blob: a2e541c87ab579e3fdff3d3c06409b94fb6587b1 [file] [log] [blame]
Patrick Williams92b42cb2022-09-03 06:53:57 -05001SUMMARY = "coreutils ~ GNU coreutils (updated); implemented as universal (cross-platform) utils, written in Rust"
2HOMEPAGE = "https://github.com/uutils/coreutils"
3LICENSE = "MIT"
Andrew Geisslerfc113ea2023-03-31 09:59:46 -05004LIC_FILES_CHKSUM = "file://LICENSE;md5=41f7469eaacac62c67d5664fff2c062d"
Patrick Williams92b42cb2022-09-03 06:53:57 -05005
Andrew Geisslerfc113ea2023-03-31 09:59:46 -05006inherit cargo cargo-update-recipe-crates
7
8SRC_URI += "git://github.com/uutils/coreutils.git;protocol=https;nobranch=1"
Patrick Williams8e7b46e2023-05-01 14:19:06 -05009
10# musl not supported because the libc crate does not support functions like "endutxent" at the moment,
11# so src/uucore/src/lib/features.rs disables utmpx when targetting musl.
12COMPATIBLE_HOST:libc-musl = "null"
13
14SRCREV = "eb11c4006f3286efee5226e546f119a20998266b"
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050015S = "${WORKDIR}/git"
16
17require ${BPN}-crates.inc
18
Patrick Williams92b42cb2022-09-03 06:53:57 -050019include uutils-coreutils.inc