diff options
| author | Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com> | 2019-05-28 18:25:04 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-05-29 12:54:12 +0100 |
| commit | 66030644e0cfa1ceff66b3d880bb828127c45d1d (patch) | |
| tree | 4407a1f8cf80e82f1c59306fff652eb0a27cd2ae /meta/recipes-devtools/file/file_5.37.bb | |
| parent | 124ac408d46b78814c2a397631aa74e1c6eeff6c (diff) | |
| download | poky-66030644e0cfa1ceff66b3d880bb828127c45d1d.tar.gz | |
file: update to 5.37
(From OE-Core rev: 127d706d7fe5d29c500ab6f81bc6d97982209bf6)
Signed-off-by: Oleksandr Kravchuk <open.source@oleksandr-kravchuk.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/file/file_5.37.bb')
| -rw-r--r-- | meta/recipes-devtools/file/file_5.37.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/meta/recipes-devtools/file/file_5.37.bb b/meta/recipes-devtools/file/file_5.37.bb new file mode 100644 index 0000000000..803aa9a271 --- /dev/null +++ b/meta/recipes-devtools/file/file_5.37.bb | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | SUMMARY = "File classification tool" | ||
| 2 | DESCRIPTION = "File attempts to classify files depending \ | ||
| 3 | on their contents and prints a description if a match is found." | ||
| 4 | HOMEPAGE = "http://www.darwinsys.com/file/" | ||
| 5 | SECTION = "console/utils" | ||
| 6 | |||
| 7 | # two clause BSD | ||
| 8 | LICENSE = "BSD" | ||
| 9 | LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=0251eaec1188b20d9a72c502ecfdda1b" | ||
| 10 | |||
| 11 | DEPENDS = "zlib file-replacement-native" | ||
| 12 | DEPENDS_class-native = "zlib-native" | ||
| 13 | |||
| 14 | # Blacklist a bogus tag in upstream check | ||
| 15 | UPSTREAM_CHECK_GITTAGREGEX = "FILE(?P<pver>(?!6_23).+)" | ||
| 16 | |||
| 17 | SRC_URI = "git://github.com/file/file.git" | ||
| 18 | |||
| 19 | SRCREV = "a0d5b0e4e9f97d74a9911e95cedd579852e25398" | ||
| 20 | S = "${WORKDIR}/git" | ||
| 21 | |||
| 22 | inherit autotools update-alternatives | ||
| 23 | |||
| 24 | ALTERNATIVE_${PN} = "file" | ||
| 25 | ALTERNATIVE_LINK_NAME[file] = "${bindir}/file" | ||
| 26 | |||
| 27 | EXTRA_OEMAKE_append_class-target = "-e FILE_COMPILE=${STAGING_BINDIR_NATIVE}/file-native/file" | ||
| 28 | EXTRA_OEMAKE_append_class-nativesdk = "-e FILE_COMPILE=${STAGING_BINDIR_NATIVE}/file-native/file" | ||
| 29 | |||
| 30 | FILES_${PN} += "${datadir}/misc/*.mgc" | ||
| 31 | |||
| 32 | do_install_append_class-native() { | ||
| 33 | create_cmdline_wrapper ${D}/${bindir}/file \ | ||
| 34 | --magic-file ${datadir}/misc/magic.mgc | ||
| 35 | } | ||
| 36 | |||
| 37 | do_install_append_class-nativesdk() { | ||
| 38 | create_cmdline_wrapper ${D}/${bindir}/file \ | ||
| 39 | --magic-file ${datadir}/misc/magic.mgc | ||
| 40 | } | ||
| 41 | |||
| 42 | BBCLASSEXTEND = "native nativesdk" | ||
| 43 | PROVIDES_append_class-native = " file-replacement-native" | ||
| 44 | # Don't use NATIVE_PACKAGE_PATH_SUFFIX as that hides libmagic from anyone who | ||
| 45 | # depends on file-replacement-native. | ||
| 46 | bindir_append_class-native = "/file-native" | ||
