M7350/oe-core/meta/recipes-devtools/file/file_5.22.bb

36 lines
1021 B
BlitzBasic
Raw Normal View History

2024-09-09 08:52:07 +00:00
SUMMARY = "File classification tool"
DESCRIPTION = "File attempts to classify files depending \
on their contents and prints a description if a match is found."
HOMEPAGE = "http://www.darwinsys.com/file/"
SECTION = "console/utils"
# two clause BSD
LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=6a7382872edb68d33e1a9398b6e03188"
DEPENDS = "zlib file-native"
2024-09-09 08:57:42 +00:00
DEPENDS_class-native = "zlib-native"
2024-09-09 08:52:07 +00:00
SRC_URI = "ftp://ftp.astron.com/pub/file/file-${PV}.tar.gz \
2024-09-09 08:57:42 +00:00
file://debian-742262.patch \
"
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
SRC_URI[md5sum] = "8fb13e5259fe447e02c4a37bc7225add"
SRC_URI[sha256sum] = "c4e3a8e44cb888c5e4b476e738503e37fb9de3b25a38c143e214bfc12109fc0b"
2024-09-09 08:52:07 +00:00
inherit autotools
FILES_${PN} += "${datadir}/misc/*.mgc"
2024-09-09 08:57:42 +00:00
do_install_append_class-native() {
2024-09-09 08:52:07 +00:00
create_cmdline_wrapper ${D}/${bindir}/file \
--magic-file ${datadir}/misc/magic.mgc
}
2024-09-09 08:57:42 +00:00
do_install_append_class-nativesdk() {
create_cmdline_wrapper ${D}/${bindir}/file \
--magic-file ${datadir}/misc/magic.mgc
}
2024-09-09 08:52:07 +00:00
2024-09-09 08:57:42 +00:00
BBCLASSEXTEND = "native nativesdk"