install_headers.py 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. """distutils.command.install_headers
  2. Implements the Distutils 'install_headers' command, to install C/C++ header
  3. files to the Python include directory."""
  4. __revision__ = "$Id$"
  5. from distutils.core import Command
  6. # XXX force is never used
  7. class install_headers(Command):
  8. description = "install C/C++ header files"
  9. user_options = [('install-dir=', 'd',
  10. "directory to install header files to"),
  11. ('force', 'f',
  12. "force installation (overwrite existing files)"),
  13. ]
  14. boolean_options = ['force']
  15. def initialize_options(self):
  16. self.install_dir = None
  17. self.force = 0
  18. self.outfiles = []
  19. def finalize_options(self):
  20. self.set_undefined_options('install',
  21. ('install_headers', 'install_dir'),
  22. ('force', 'force'))
  23. def run(self):
  24. headers = self.distribution.headers
  25. if not headers:
  26. return
  27. self.mkpath(self.install_dir)
  28. for header in headers:
  29. (out, _) = self.copy_file(header, self.install_dir)
  30. self.outfiles.append(out)
  31. def get_inputs(self):
  32. return self.distribution.headers or []
  33. def get_outputs(self):
  34. return self.outfiles
  35. # class install_headers