mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-01 13:58:04 +00:00
Move the functionality into autotools and ensure all our Poky recipes are no longer using it. Keep the autools_stage class around for OE compatability but just have it inherit autools. Signed-off-by: Joshua Lock <josh@linux.intel.com>
22 lines
637 B
BlitzBasic
22 lines
637 B
BlitzBasic
DESCRIPTION = "File attempts to classify files depending \
|
|
on their contents and prints a description if a match is found."
|
|
SECTION = "console/utils"
|
|
LICENSE = "BSD-ADV"
|
|
DEPENDS = "file-native"
|
|
|
|
SRC_URI = "ftp://ftp.astron.com/pub/file/file-${PV}.tar.gz \
|
|
file://dump \
|
|
file://filesystems"
|
|
|
|
inherit autotools
|
|
|
|
do_configure_prepend() {
|
|
sed -i -e 's,$(top_builddir)/src/file,file,' ${S}/magic/Makefile.am
|
|
cp ${WORKDIR}/dump ${S}/magic/Magdir/
|
|
cp ${WORKDIR}/filesystems ${S}/magic/Magdir/
|
|
}
|
|
|
|
DEPENDS_virtclass-native = ""
|
|
SRC_URI_append_virtclass-native = " file://native-fix.diff;patch=1"
|
|
BBCLASSEXTEND = "native"
|