control 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. Source: file
  2. Section: utils
  3. Priority: standard
  4. Maintainer: Michael Piefel <piefel@debian.org>
  5. Build-Depends: debhelper (>= 4), zlib1g-dev, autotools-dev, libtool
  6. Standards-Version: 3.6.1
  7. Package: file
  8. Architecture: any
  9. Depends: libmagic1 (= ${Source-Version}), ${shlibs:Depends}
  10. Description: Determines file type using "magic" numbers
  11. File tests each argument in an attempt to classify it. There are three
  12. sets of tests, performed in this order: filesystem tests, magic number
  13. tests, and language tests. The first test that succeeds causes the
  14. file type to be printed.
  15. .
  16. Starting with version 4, the file command is not much more than a wrapper
  17. around the "magic" library.
  18. Package: libmagic1
  19. Section: libs
  20. Architecture: any
  21. Depends: ${shlibs:Depends}
  22. Suggests: file
  23. Conflicts: file (<= 4)
  24. Description: File type determination library using "magic" numbers
  25. This library can be used to classify files according to magic number
  26. tests. It implements the core functionality of the file command.
  27. Package: libmagic-dev
  28. Section: libdevel
  29. Priority: optional
  30. Architecture: any
  31. Depends: libmagic1 (= ${Source-Version})
  32. Suggests: file
  33. Description: File type determination library (development)
  34. This library can be used to classify files according to magic number
  35. tests. It implements the core functionality of the file command.
  36. .
  37. This package contains the development files.