control 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. Source: file
  2. Section: utils
  3. Priority: standard
  4. Maintainer: Daniel Baumann <daniel@debian.org>
  5. Build-Depends: debhelper (>= 7), quilt, autotools-dev, python, python-all-dev, python-all-dbg, zlib1g-dev
  6. Standards-Version: 3.8.1
  7. Homepage: http://www.darwinsys.com/file/
  8. Vcs-Browser: http://git.debian.net/?p=debian/file.git
  9. Vcs-Git: git://git.debian.net/git/debian/file.git
  10. XS-Python-Version: all
  11. Package: file
  12. Section: utils
  13. Priority: standard
  14. Architecture: any
  15. Depends: ${shlibs:Depends}, ${misc:Depends}, libmagic1 (= ${binary:Version})
  16. Description: Determines file type using "magic" numbers
  17. File tests each argument in an attempt to classify it. There are three sets of
  18. tests, performed in this order: filesystem tests, magic number tests, and
  19. language tests. The first test that succeeds causes the file type to be
  20. printed.
  21. .
  22. Starting with version 4, the file command is not much more than a wrapper
  23. around the "magic" library.
  24. Package: libmagic1
  25. Section: libs
  26. Priority: standard
  27. Architecture: any
  28. Depends: ${shlibs:Depends}, ${misc:Depends}
  29. Suggests: file
  30. Description: File type determination library using "magic" numbers
  31. This library can be used to classify files according to magic number tests. It
  32. implements the core functionality of the file command.
  33. Package: libmagic-dev
  34. Section: libdevel
  35. Priority: optional
  36. Architecture: any
  37. Depends: libmagic1 (= ${binary:Version}), zlib1g-dev
  38. Suggests: file
  39. Description: File type determination library using "magic" numbers (development)
  40. This library can be used to classify files according to magic number tests. It
  41. implements the core functionality of the file command.
  42. .
  43. This package contains the development files.
  44. Package: python-magic
  45. Section: python
  46. Priority: extra
  47. Architecture: any
  48. Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
  49. Provides: ${python:Provides}
  50. Suggests: python-magic-dbg
  51. XB-Python-Version: ${python:Versions}
  52. Description: File type determination library using "magic" numbers (Python bindings)
  53. This library can be used to classify files according to magic number tests. It
  54. implements the core functionality of the file command.
  55. .
  56. This package contains the Python bindings to query /etc/magic information for a
  57. given file in Python.
  58. Package: python-magic-dbg
  59. Section: python
  60. Architecture: any
  61. Priority: extra
  62. Depends: python-magic (= ${binary:Version}), python-dbg, ${shlibs:Depends}
  63. Description: File type determination library using "magic" numbers (Python bindings/debug)
  64. This library can be used to classify files according to magic number tests. It
  65. implements the core functionality of the file command.
  66. .
  67. This package contains the Python bindings to query /etc/magic information for a
  68. given file in Python, built for the Python debug interpreter.