file_5.04.bb 925 B

1234567891011121314151617181920212223242526272829303132
  1. DESCRIPTION = "File attempts to classify files depending \
  2. on their contents and prints a description if a match is found."
  3. HOMEPAGE = "http://www.darwinsys.com/file/"
  4. SECTION = "console/utils"
  5. # two clause BSD
  6. LICENSE = "BSD"
  7. LIC_FILES_CHKSUM = "file://COPYING;beginline=2;md5=6a7382872edb68d33e1a9398b6e03188"
  8. DEPENDS = "zlib file-native"
  9. DEPENDS_virtclass-native = "zlib-native"
  10. PR = "r1"
  11. SRC_URI = "ftp://ftp.astron.com/pub/file/file-${PV}.tar.gz \
  12. file://stringb-compat.patch \
  13. file://ge-le.patch \
  14. file://dump \
  15. file://filesystems"
  16. SRC_URI[md5sum] = "accade81ff1cc774904b47c72c8aeea0"
  17. SRC_URI[sha256sum] = "4c9e6e7994e74cb3386374ae91b055d26ac96b9d3e82fd157ae2d62e87a4260c"
  18. inherit autotools
  19. do_configure_prepend() {
  20. cp ${WORKDIR}/dump ${S}/magic/Magdir/
  21. cp ${WORKDIR}/filesystems ${S}/magic/Magdir/
  22. }
  23. FILES_${PN} += "${datadir}/misc/*.mgc"
  24. BBCLASSEXTEND = "native"