control 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. Source: file
  2. Section: utils
  3. Priority: standard
  4. Maintainer: Luk Claes <luk@debian.org>
  5. Build-Depends:
  6. debhelper (>= 9), autotools-dev, python-all-dev, python3-all-dev, zlib1g-dev
  7. Standards-Version: 3.9.4
  8. Homepage: http://www.darwinsys.com/file/
  9. Package: file
  10. Architecture: any
  11. Multi-Arch: foreign
  12. Depends: ${misc:Depends}, ${shlibs:Depends}, libmagic1 (= ${binary:Version})
  13. Description: Determines file type using "magic" numbers
  14. File tests each argument in an attempt to classify it. There are three sets of
  15. tests, performed in this order: filesystem tests, magic number tests, and
  16. language tests. The first test that succeeds causes the file type to be
  17. printed.
  18. Package: file-dbg
  19. Section: debug
  20. Priority: extra
  21. Architecture: any
  22. Multi-Arch: foreign
  23. Depends: ${misc:Depends}, ${shlibs:Depends}, libmagic1 (= ${binary:Version})
  24. Description: Determines file type using "magic" numbers (debug)
  25. File tests each argument in an attempt to classify it. There are three sets of
  26. tests, performed in this order: filesystem tests, magic number tests, and
  27. language tests. The first test that succeeds causes the file type to be
  28. printed.
  29. .
  30. This package contains the debugging symbols.
  31. Package: libmagic1
  32. Section: libs
  33. Architecture: any
  34. Multi-Arch: same
  35. Pre-Depends: ${misc:Pre-Depends}
  36. Depends: ${misc:Depends}, ${shlibs:Depends}
  37. Suggests: file
  38. Description: File type determination library using "magic" numbers
  39. This library can be used to classify files according to magic number tests. It
  40. implements the core functionality of the file command.
  41. Package: libmagic-dev
  42. Section: libdevel
  43. Priority: optional
  44. Architecture: any
  45. Multi-Arch: same
  46. Depends: ${misc:Depends}, libmagic1 (= ${binary:Version})
  47. Suggests: file
  48. Description: File type determination library using "magic" numbers (development)
  49. This library can be used to classify files according to magic number tests. It
  50. implements the core functionality of the file command.
  51. .
  52. This package contains the development files.
  53. Package: python-magic
  54. Section: python
  55. Priority: optional
  56. Architecture: any
  57. Depends:
  58. ${misc:Depends}, ${shlibs:Depends}, ${python:Depends},
  59. libmagic1 (= ${binary:Version})
  60. Provides: ${python:Provides}
  61. Description: File type determination library using "magic" numbers (Python bindings)
  62. This library can be used to classify files according to magic number tests. It
  63. implements the core functionality of the file command.
  64. .
  65. This package contains the Python bindings.
  66. Package: python3-magic
  67. Section: python
  68. Priority: optional
  69. Architecture: all
  70. Depends:
  71. ${misc:Depends}, ${python3:Depends}, libmagic1 (>= ${binary:Version})
  72. Provides: ${python3:Provides}
  73. Description: File type determination library using "magic" numbers (Python 3 bindings)
  74. This library can be used to classify files according to magic number tests. It
  75. implements the core functionality of the file command.
  76. .
  77. This package contains the Python 3 bindings.