control 2.9 KB

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