control 2.2 KB

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