control 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. Source: file
  2. Section: utils
  3. Priority: standard
  4. Maintainer: Michael Piefel <piefel@debian.org>
  5. Build-Depends: debhelper (>= 5.0.37.2), zlib1g-dev, autotools-dev, libtool, python (>= 2.3.5-7), python-all-dev
  6. Standards-Version: 3.7.2
  7. XS-Python-Version: all
  8. Package: file
  9. Architecture: any
  10. Depends: libmagic1 (= ${Source-Version}), ${shlibs:Depends}
  11. Description: Determines file type using "magic" numbers
  12. File tests each argument in an attempt to classify it. There are three
  13. sets of tests, performed in this order: filesystem tests, magic number
  14. tests, and language tests. The first test that succeeds causes the
  15. file type to be printed.
  16. .
  17. Starting with version 4, the file command is not much more than a wrapper
  18. around the "magic" library.
  19. Package: libmagic1
  20. Section: libs
  21. Architecture: any
  22. Depends: ${shlibs:Depends}
  23. Suggests: file
  24. Conflicts: file (<= 4)
  25. Description: File type determination library using "magic" numbers
  26. This library can be used to classify files according to magic number
  27. tests. It implements the core functionality of the file command.
  28. Package: libmagic-dev
  29. Section: libdevel
  30. Priority: optional
  31. Architecture: any
  32. Depends: libmagic1 (= ${Source-Version})
  33. Suggests: file
  34. Description: File type determination library (development)
  35. This library can be used to classify files according to magic number
  36. tests. It implements the core functionality of the file command.
  37. .
  38. This package contains the development files.
  39. Package: python-magic
  40. Section: python
  41. Architecture: any
  42. Priority: extra
  43. Depends: ${python:Depends}, ${shlibs:Depends}
  44. Provides: ${python:Provides}
  45. Conflicts: python2.3-magic, python2.4-magic
  46. Replaces: python2.3-magic, python2.4-magic
  47. XB-Python-Version: ${python:Versions}
  48. Description: Python binding for the magic library
  49. This Python library can be use to query /etc/magic
  50. information for a given file in Python.