install.py 307 B

1234567891011121314151617
  1. #!/usr/bin/env python
  2. #
  3. # Run this script as root to install the debugging tools
  4. #
  5. from distutils.core import setup
  6. import sys
  7. if len(sys.argv) == 1:
  8. sys.argv.append("install") # default to INSTALL
  9. setup(
  10. name="B43-debug-tools",
  11. py_modules=["libb43"],
  12. scripts=["b43-fwdump", "b43-beautifier"]
  13. )