control 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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, python, python2.3-dev, python2.4-dev
  6. Standards-Version: 3.6.2
  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.
  38. Package: python2.3-magic
  39. Priority: extra
  40. Section: python
  41. Architecture: any
  42. Depends: ${shlibs:Depends}
  43. Description: Python binding for the magic library (2.3 version)
  44. This Python library can be use to query /etc/magic
  45. information for a given file in Python.
  46. Package: python2.4-magic
  47. Priority: extra
  48. Section: python
  49. Architecture: any
  50. Depends: ${shlibs:Depends}
  51. Description: Python binding for the magic library (2.4 version)
  52. This Python library can be use to query /etc/magic
  53. information for a given file in Python.
  54. Package: python-magic
  55. Section: python
  56. Architecture: all
  57. Priority: extra
  58. Depends: ${python:Depends}
  59. Description: Python binding for the magic library (dummy package)
  60. This Python library can be use to query /etc/magic
  61. information for a given file in Python.
  62. .
  63. This is a generic package, which always depends on the version
  64. specific to the default Python version.