control 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. Source: file
  2. Maintainer: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
  3. Homepage: http://www.darwinsys.com/file/
  4. Standards-Version: 3.9.8
  5. Build-Depends: debhelper (>= 9.20141010~),
  6. dpkg-dev (>= 1.17.14~),
  7. Build-Depends-Arch:
  8. dh-autoreconf,
  9. zlib1g-dev,
  10. Build-Depends-Indep:
  11. dh-python,
  12. python-all,
  13. python-setuptools,
  14. python3-all,
  15. python3-setuptools,
  16. Priority: standard
  17. Section: utils
  18. Package: file
  19. Architecture: any
  20. Depends: ${misc:Depends}, ${shlibs:Depends},
  21. libmagic1 (= ${binary:Version}),
  22. Multi-Arch: foreign
  23. Description: Recognize the type of data in a file using "magic" numbers
  24. The file command is "a file type guesser", a command-line tool that
  25. tells you in words what kind of data a file contains.
  26. .
  27. This package contains the file program itself.
  28. Package: libmagic1
  29. Architecture: any
  30. Pre-Depends:
  31. ${misc:Pre-Depends},
  32. Depends: ${misc:Depends}, ${shlibs:Depends},
  33. libmagic-mgc (= ${binary:Version}),
  34. Suggests:
  35. file,
  36. Section: libs
  37. Multi-Arch: same
  38. Description: Recognize the type of data in a file using "magic" numbers - library
  39. This library can be used to classify files according to magic number
  40. tests. It implements the core functionality of the file command.
  41. Package: libmagic-mgc
  42. Architecture: any
  43. Depends: ${misc:Depends},
  44. Breaks:
  45. libmagic1 (<< 1:5.28-4~),
  46. Replaces:
  47. libmagic1 (<< 1:5.28-4~),
  48. Section: libs
  49. Multi-Arch: foreign
  50. Description: File type determination library using "magic" numbers (compiled magic file)
  51. This package provides the compiled magic file "magic.mgc". It has
  52. been separated from libmagic1 in order to meet the multiarch
  53. requirements without breaking applications that expect this file
  54. at its absolute path.
  55. Package: libmagic-dev
  56. Architecture: any
  57. Depends: ${misc:Depends},
  58. libmagic1 (= ${binary:Version}),
  59. Suggests:
  60. file,
  61. Section: libdevel
  62. Priority: optional
  63. Multi-Arch: same
  64. Description: Recognize the type of data in a file using "magic" numbers - development
  65. This library can be used to classify files according to magic number
  66. tests.
  67. .
  68. This package contains the development files.
  69. Package: python-magic
  70. Architecture: all
  71. Depends: ${misc:Depends},
  72. ${python:Depends},
  73. libmagic1 (>= ${binary:Version}),
  74. libmagic1 (<< ${binary:Version}.1~),
  75. Provides:
  76. ${python:Provides},
  77. Section: python
  78. Priority: optional
  79. Description: Recognize the type of data in a file using "magic" numbers - Python bindings
  80. This package contains the Python bindings for the libmagic file type
  81. detection library.
  82. Package: python3-magic
  83. Architecture: all
  84. Depends: ${misc:Depends}, ${python3:Depends},
  85. libmagic1 (>= ${binary:Version}),
  86. libmagic1 (<< ${binary:Version}.1~),
  87. Section: python
  88. Priority: optional
  89. Description: Recognize the type of data in a file using "magic" numbers - Python 3 bindings
  90. This package contains the Python 3 bindings for the libmagic file type
  91. detection library.