control 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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, python-all-dev,
  7. python-all-dbg, zlib1g-dev
  8. Standards-Version: 3.9.4
  9. Homepage: http://www.darwinsys.com/file/
  10. Package: file
  11. Section: utils
  12. Priority: standard
  13. Architecture: any
  14. Multi-Arch: foreign
  15. Depends: ${misc:Depends}, ${shlibs: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. Package: libmagic1
  22. Section: libs
  23. Priority: standard
  24. Architecture: any
  25. Multi-Arch: same
  26. Pre-Depends: ${misc:Pre-Depends}
  27. Depends: ${misc:Depends}, ${shlibs:Depends}
  28. Suggests: file
  29. Description: File type determination library using "magic" numbers
  30. This library can be used to classify files according to magic number tests. It
  31. implements the core functionality of the file command.
  32. Package: libmagic-dev
  33. Section: libdevel
  34. Priority: optional
  35. Architecture: any
  36. Multi-Arch: same
  37. Depends: ${misc:Depends}, libmagic1 (= ${binary:Version})
  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:
  49. ${misc:Depends}, ${shlibs:Depends}, ${python:Depends},
  50. libmagic1 (= ${binary:Version})
  51. Provides: ${python:Provides}
  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.